Log In
Fighting Weather Castform Don't have an account yet? Register now!
.

Forum Thread

odd resends

Forum-Index Bugs/Complaints Solved odd resends
Red_the_Changeling
OFFLINE
Trainerlevel: 25

Forum Posts: 247
Posted: Wed, 17/09/2014 13:15 (9 Years ago)
ive noticed that if you retreve all the pokemon on rumble and then resend them with the new way, if you have retrieved all of them before resending and click a new ruble area to go to, a visual glitch occurs where all the pokemon appear to be going to that area but they wont if you did not click the rumble area you want them to go to... this may be hard to understand but i think you will find me correct if you test it.
Nekomaru_Nidai
OFFLINE
Trainerlevel: 55

Forum Posts: 1,277
Posted: Wed, 17/09/2014 14:15 (9 Years ago)
I've seen that. I may explain it better:

When you retrieve your Rumblers, if they all are on the same Area, and you change the Area for one Pokémon, it seems that all the other Rumblers go to the other Area too, because the Image changes for all of them, but they go to the same area as before, and that's confusing

For example. Let's say all my Pokemon are on Windy Praire. I change Chandelure's area to Silent Forest. Then all the images show Silent Forest, when the only one that is going to Silent Forest is Chandelure. If you send them to the Rumble, then the only one that goes to Silent Forest is Chandelure, the others still go to Windy Praire
CatLady
OFFLINE
Trainerlevel: 99

Forum Posts: 8,331
Posted: Fri, 20/10/2017 15:23 (6 Years ago)
This is still happening.
Credits for avatar to ~Cookie~

Kitties! Riako has no idea what he unleashed with that update🙀
Collecting Lovely Larvesta and Silly Seel Plushies~
Looking for Ice Gems and Flying Gems here! Help me hunt a Shiny Articuno!
(You can win your own non-shiny Articuno in return)
Breeding events for the cause here!
Arseny
OFFLINE
Trainerlevel: 87

Forum Posts: 528
Posted: Thu, 01/02/2018 22:56 (6 Years ago)
Some picture to explain it better since this is still a bug.

Since I use mostly windy prairie, this was my starting screen when preparing to resend the rumblers


Normally, when you click on any of the 6 rocky cave images for any of the six rumblers, it will change to this:


This is when problems occurs, despite all having rocky cave as their mission, only the one that I clicked will go there.
So let's make a little test: I clicked images in this order:
Rocky cave for the first pokemon.
Windy prairie for the second.
Cave for the third.
Prairie for the forth.
Cave for the fifth.
Prairie for the sixth.

Now all should go to to windy prairie, everything would look like in the first screen shot. But thanks to the glitch this will happen:
SwampFall
OFFLINE
Trainerlevel: 59

Forum Posts: 604
Posted: Tue, 13/02/2018 18:53 (6 Years ago)
Possible Solve

File:
rumble_overview

Current Script:
function selectResendArea(pkmn, area) {
    $("[class^=rumble_resend_area]").css('opacity', 0.4);
    $(".rumble_resend_area" + area).css('opacity', 1);
    $(".rumbler_window" + pkmn).find("input.resendArea").val(area);
}


Working Script:
function selectResendArea(pkmn, area) {
    $(".rumbler_window" + pkmn).find("[class^=rumble_resend_area]").css('opacity', 0.4);
    $(".rumbler_window" + pkmn).find(".rumble_resend_area" + area).css('opacity', 1);
    $(".rumbler_window" + pkmn).find("input.resendArea").val(area);
}

Riako
OFFLINE
Trainerlevel: 69

Forum Posts: 2,604
Posted: Fri, 30/03/2018 10:06 (6 Years ago)
Fixed!