Page 1 of 1

Rematch Custom Filter

Posted: November 30th, 2021, 7:10 am
by Adaren
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

Re: Rematch Custom Filter

Posted: December 5th, 2021, 8:13 pm
by Gello
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.

Re: Rematch Custom Filter

Posted: December 6th, 2021, 9:40 am
by Adaren
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.

Re: Rematch Custom Filter

Posted: December 7th, 2021, 4:39 pm
by Gello
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)

Re: Rematch Custom Filter

Posted: June 7th, 2022, 3:35 am
by Guest
Finaly! Thank you for info