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.

Difference between revisions of "User:Cegaiel/Macros/PapyPicker/Code"

From ATITD5
Jump to navigationJump to search
 
Line 25: Line 25:
 
SetDefaultMouseSpeed,0
 
SetDefaultMouseSpeed,0
 
   SetMouseDelay,-1
 
   SetMouseDelay,-1
 +
 +
 +
 +
 +
;This just simply sets the zoom level to what I felt was just right
 +
;The below is optional and can be removed...
  
 
Loop, 32
 
Loop, 32
Line 40: Line 46:
 
}
 
}
  
;F6 -16 wheeldown
+
 
 +
; End zooming
 +
 
 +
 
 +
 
 +
 
 +
 
 +
;This searches for the color of pappy (0xDBD401) in a square box around the avatar
 +
;The upper left corner coords are 475,450
 +
;The bottom right corner is 820,650
 +
;You can adjust as you see fit.
 +
 
 +
;Use my Get Mouse Position macro to help you find the coords you want to use, if you need to...
 +
 
 +
 
 +
 
  
 
Loop
 
Loop
Line 48: Line 69:
 
if ErrorLevel = 0
 
if ErrorLevel = 0
 
{
 
{
;MsgBox, %Px%, %Py%
 
 
NewX := Px + 2
 
NewX := Px + 2
 
NewY := Py + 5
 
NewY := Py + 5

Latest revision as of 03:22, 17 September 2010

;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




;This just simply sets the zoom level to what I felt was just right
;The below is optional and can be removed...

Loop, 32
{
		click, WU
		sleep 250
}



Loop, 16
{
		click, WD
		sleep 250
}


; End zooming





;This searches for the color of pappy (0xDBD401) in a square box around the avatar
;The upper left corner coords are 475,450
;The bottom right corner is 820,650
;You can adjust as you see fit.

;Use my Get Mouse Position macro to help you find the coords you want to use, if you need to...




Loop
{

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

Sleep 150
}



}