Page 1 of 1

[Rematch] Custom Script to filter single breed pets

Posted: July 26th, 2023, 9:12 am
by Dawn22868
Hello,

I wanna take advantage of Squirt Day to level my pets and I'd like to prioritize pets that come with a single breed.
Is there a custom script to only show single breed pets in Rematch, ideally from levels 1 to 24 so I can quickly queue them up for leveling.

Any help is appreciated.

Cheers!

Re: [Rematch] Custom Script to filter single breed pets

Posted: July 26th, 2023, 10:44 am
by Gello
I'll double check tonight (not at a WoW pc now), but this should work:

Code: Select all

return petInfo.level and petInfo.level < 25 and petInfo.possibleBreedIDs and #petInfo.possibleBreedIDs==1
This lists all pets that have a level under 25 and also have exactly one possible breed. You can Fill Queue from the Queue button to move them all to the queue if they're not already there. (Fill Queue will not add any that have a version at 25 already; Fill Queue More will add them regardless if you have one at 25.)

Re: [Rematch] Custom Script to filter single breed pets

Posted: July 26th, 2023, 11:41 am
by Dawn22868
Gello wrote:
July 26th, 2023, 10:44 am
I'll double check tonight (not at a WoW pc now), but this should work:

Code: Select all

return petInfo.level and petInfo.level < 25 and petInfo.possibleBreedIDs and #petInfo.possibleBreedIDs==1
This lists all pets that have a level under 25 and also have exactly one possible breed. You can Fill Queue from the Queue button to move them all to the queue if they're not already there. (Fill Queue will not add any that have a version at 25 already; Fill Queue More will add them regardless if you have one at 25.)
This works great! Huge thanks for the fast reply.
I made another one without the level restriction based on your script to help me make all of them rare :)

Cheers!