You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Here is a bit of code I made to identify some of the junk items that come from events/auras/etc that clog up any item tracking: if RIGHT([Item],4) = " Egg" or LEFT([Item],7)="Festive" or CONTAINS([Item],"Snowball") or RIGHT([Item],4) = "Clue" or RIGHT([Item],4) = "Hint" or LEFT([Item],6)="Chrome" or LEFT([Item],6)="Cursed" or CONTAINS([Item],"Gift") or CONTAINS([Item],"Warden Stone") or CONTAINS([Item],"Marshmallow") or CONTAINS([Item],"Dumpling Cheese") or CONTAINS([Item],"Ghastly Galleon") or CONTAINS([Item],"Prize Key") or CONTAINS([Item],"Spooky") or CONTAINS([Item],"Party") or CONTAINS([Item],"Wealth") or CONTAINS([Item],"Cupcake") or LEFT([Item],2)="20" or LEFT([Item],7)="Rift 20" THEN "Exclude" ELSE "Include" END
I believe Aard had some use for this so I'm putting it here.
The text was updated successfully, but these errors were encountered:
Here is a bit of code I made to identify some of the junk items that come from events/auras/etc that clog up any item tracking:
if RIGHT([Item],4) = " Egg" or LEFT([Item],7)="Festive" or CONTAINS([Item],"Snowball") or RIGHT([Item],4) = "Clue" or RIGHT([Item],4) = "Hint" or LEFT([Item],6)="Chrome" or LEFT([Item],6)="Cursed" or CONTAINS([Item],"Gift") or CONTAINS([Item],"Warden Stone") or CONTAINS([Item],"Marshmallow") or CONTAINS([Item],"Dumpling Cheese") or CONTAINS([Item],"Ghastly Galleon") or CONTAINS([Item],"Prize Key") or CONTAINS([Item],"Spooky") or CONTAINS([Item],"Party") or CONTAINS([Item],"Wealth") or CONTAINS([Item],"Cupcake") or LEFT([Item],2)="20" or LEFT([Item],7)="Rift 20" THEN "Exclude" ELSE "Include" END
I believe Aard had some use for this so I'm putting it here.
The text was updated successfully, but these errors were encountered: