Created
October 21, 2014 17:54
-
-
Save seeker/9483314bb946ae875cf5 to your computer and use it in GitHub Desktop.
Save your ignored items on raidtime.net
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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