The Wiki for Tale 5 is in read-only mode and is available for archival and reference purposes only. Please visit the current Tale 11 Wiki in the meantime.

If you have any issues with this Wiki, please post in #wiki-editing on Discord or contact Brad in-game.

User:Cegaiel/Macros/PapyPicker/Code

From ATITD5
< User:Cegaiel‎ | Macros‎ | PapyPicker
Revision as of 07:59, 16 September 2010 by Cegaiel (talk | contribs)
Jump to navigationJump to search
;This was created/tested in 1280x1024 resolution
;The script will search an area (square box around avatar's location) for the papy color (0xDBD401). It will right click each papy and gather.
;Start script with Ctrl+Alt+W. It will zoom in to my favorite zoom level and then start looking for papy to gather.
;Just run close to any papy, it will get picked.

;Execute Script with Ctrl+Alt+W
;Ctrl+R = Reload
;Ctrl+P = Pause/Resume


;Author: Cegaiel
;Date: 9/16/2010


^r::reload
^p::Pause
^!w::


	WinActivate, eGenesis Client

	Send {F6}

SetDefaultMouseSpeed,0
  SetMouseDelay,-1

Loop, 32
{
		click, WU
		sleep 250
}



Loop, 16
{
		click, WD
		sleep 250
}

;F6 -16 wheeldown

Loop
{

PixelSearch, Px, Py, 475, 450, 820, 650, 0xDBD401, 25, Fast|RGB
if ErrorLevel = 0
{
;MsgBox, %Px%, %Py% 
NewX := Px + 2
NewY := Py + 5
MouseGetPos, OldX, OldY
Click Right %NewX%, %NewY%
MouseMove, %OldX%, %OldY%

Sleep 150
}



}