Rematch Custom Filter
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
Not Fully Collected:
Fully Collected:
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.
Code: Select all
-- Pets with less than their max collected
return petInfo.count<petInfo.maxCount
Code: Select all
-- Pets that have their max collected
return petInfo.count>=petInfo.maxCount
Re: Rematch Custom Filter
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.
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
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)