Skip to content

Instantly share code, notes, and snippets.

@seeker
Created October 21, 2014 17:54
Show Gist options
  • Save seeker/9483314bb946ae875cf5 to your computer and use it in GitHub Desktop.
Save seeker/9483314bb946ae875cf5 to your computer and use it in GitHub Desktop.
Save your ignored items on raidtime.net
Local $windowHandle = WinActivate ("RaidTime")
If $windowHandle == 0 then
MsgBox ( 0, "Ooops", "Could not find RaidTime tab or window")
Exit
EndIf
; add items to filter here and separate with |
; no leading or trailing spaces
Local $filterItems = "Stunning Speed|Sprint Boost|Fortitude|Vauban Helmet|Loot Detector|Enemy Radar|Steel Charge|Pistol Scavenger|Speed Holster|Shred|Pendragon Excalibur Helmet|Plasma Sword|Vauban Chassis|Jaw Sword|Physique|Infested Impedance|Glaive|Rifle Amp|Rejuvenation|Gambit Vauban Helmet|Credits"
Local $filterFieldX = 1536
Local $filterFieldY = 253
Local $filterCount
Local $filterArray = StringSplit($filterItems, "|")
MouseClick ( "left",$filterFieldX , $filterFieldY)
$filterCount = $filterArray[0]
For $i = 1 to $filterCount
send($filterArray[$i])
Send("{ENTER}")
Sleep(600)
Next
Send("{ENTER}")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment