Rematch Custom Filter

Discuss your favorite pet addons and macros.
Post Reply
Adaren
Posts:2
Joined:May 4th, 2021
Pet Score:13477
BattleTag®:Adaren#1581
Realm:Kel'Thuzad-us
Contact:
Rematch Custom Filter

Post by Adaren » November 30th, 2021, 7:10 am

Does anyone know how to make a custom filter on Rematch to only show pets that you haven't collected the maximum number. Whether it be 1/1 or 3/3? Or do the reverse and exclude pets that have the maximum number collected

Gello
Posts:575
Joined:January 23rd, 2014
Pet Score:9171
Realm:Hyjal-us
Contact:

Re: Rematch Custom Filter

Post by Gello » December 5th, 2021, 8:13 pm

Not Fully Collected:

Code: Select all

-- Pets with less than their max collected
return petInfo.count<petInfo.maxCount
Fully Collected:

Code: Select all

-- Pets that have their max collected
return petInfo.count>=petInfo.maxCount
You may already know this, but to create these custom filters, click FIlter -> Script -> New Script, give each a name and copy/paste the above into the big textbox.

Adaren
Posts:2
Joined:May 4th, 2021
Pet Score:13477
BattleTag®:Adaren#1581
Realm:Kel'Thuzad-us
Contact:

Re: Rematch Custom Filter

Post by Adaren » December 6th, 2021, 9:40 am

Thank you this was very helpful.

i don't know if this script is possible but do you know if it is possible to create a filter to exclude pets that you have collected all possible breeds.

Gello
Posts:575
Joined:January 23rd, 2014
Pet Score:9171
Realm:Hyjal-us
Contact:

Re: Rematch Custom Filter

Post by Gello » December 7th, 2021, 4:39 pm

This will filter to all pets you haven't maxed out that have more breeds than pets you've collected (or where number of breeds are unknown).

Code: Select all

-- Pets below max collected where not all breeds collected
return petInfo.count<petInfo.maxCount and (not petInfo.numPossibleBreeds or petInfo.numPossibleBreeds>petInfo.count)

Guest
Contact:

Re: Rematch Custom Filter

Post by Guest » June 7th, 2022, 3:35 am

Finaly! Thank you for info

Post Reply