The Wiki for Tale 4 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 A Tale in the Desert
Jump to navigationJump to search
Line 2: Line 2:
 
;This was created/tested in 1280x1024 resolution
 
;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.
 
;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.
+
;Start script with Ctrl+Alt+W. It will zoom in to my favorite zoom level
;Just run close to any papy, it will get picked.
+
 
 +
 
 +
;Explanation of Modes:
 +
;Automatic Mode: means that it is looking for papy, continuously and all the time, and will pick them if you are in range.
 +
 
 +
;Manual Mode: means that it will not look until you press the F1 key. It will pick everything within range and stop.
 +
;After stopping, it will wait for you to press the F1 key again and repeat.
 +
 
 +
;While Automatic seems more better, sometimes it is annoying. If it see a single papy in range and you have 5 more a couple coords away
 +
;then it will pick the 1 first, and sometimes your avatar stops running. You might find yourself, clicking to keep running as much as if you picked the papy by hand.
 +
;The benefit of Manual mode is you can run and stand in the center of a big papy patch, and have it gather them all at once. Then you are free to run to next patch
 +
;without your avatar stopping on single papys.
 +
 
  
  
Line 21: Line 33:
 
;Author: Cegaiel
 
;Author: Cegaiel
 
;Date: 9/16/2010
 
;Date: 9/16/2010
;Last Update: 9/23/2010
+
;Last Update: 10/10/2010
  
  
Line 42: Line 54:
  
  
 +
Gui, Add, Text,, Mode:
 +
Gui, Add, DropDownList, vMode Choose1, Automatic|Manual
 +
Gui, Add, Button, gStart, START
 +
Gui, Show
 +
return
  
  
  
SetDefaultMouseSpeed,0
 
  SetMouseDelay,-1
 
  
 +
Start:
 +
WinActivate, eGenesis Client
 +
Gui, Submit
  
  
  
;This just simply sets the zoom level to what I felt was just right
+
;This just simply sets the zoom level to what I felt was just right. It is not critical you can zoom in or out a couple times as you see fit.
 
;The below is optional and can be removed...
 
;The below is optional and can be removed...
  
Line 82: Line 100:
  
  
Msgbox, Papy Picker now ready!`n`nJust start running past pappy and it will automatically pick it via right click.`n`nCtrl+P to pause/resume, Ctrl+R to reload script
 
  
 
; End zooming
 
; End zooming
  
 +
 +
SetDefaultMouseSpeed,0
 +
  SetMouseDelay,-1
 +
 +
 +
 +
if (Mode = "Automatic")
 +
{
 +
Msgbox, Papy Picker now ready (Automatic Mode)!`n`nJust start running past pappy and it will automatically pick it via right click.`n`nCtrl+P to pause/resume, Ctrl+R to reload script
 +
Gosub, Automatic
 +
} else {
 +
Msgbox, Papy Picker now ready (Manual Mode)!`n`nRun to a patch of papy, stand in the middle of it and hit F1 to pick everything in range, via right click.`n`nCtrl+P to pause/resume, Ctrl+R to reload script
 +
Gosub, Manual
 +
}
  
  
Line 92: Line 123:
 
;This searches for the color of pappy (0xDBD401) in a square box around the avatar
 
;This searches for the color of pappy (0xDBD401) in a square box around the avatar
  
;The upper left corner coords are 475,450
+
;The upper left corner coords are 100,450
;The bottom right corner is 820,650
+
;The bottom right corner is 1132,715
 
;You can adjust as you see fit.
 
;You can adjust as you see fit.
  
Line 105: Line 136:
  
 
;Also it is possible some video cards may show the papy color slightly different. If after changing your video settings to match mine and it still does not work,
 
;Also it is possible some video cards may show the papy color slightly different. If after changing your video settings to match mine and it still does not work,
;Then use my Get Mouse Position macro to find out what the color for you and change the 0xDBD401 to match it.
+
;Then use my Get Mouse Position macro to find out what the color for you is and change the 0xDBD401 to match it.
  
  
  
 +
Manual:
 +
KeyWait, F1, D
  
Loop
+
 
 +
WinActivate, eGenesis Client
 +
 
 +
 
 +
Loop 25
 
{
 
{
  
PixelSearch, Px, Py, 475, 450, 820, 650, 0xDBD401, 25, Fast|RGB
+
Gosub, FindPapy
 +
 
 
if ErrorLevel = 0
 
if ErrorLevel = 0
 
{
 
{
Line 124: Line 162:
 
Sleep 150
 
Sleep 150
 
}
 
}
 +
}
 +
 +
Gosub, Manual
 +
 +
 +
 +
  
  
 +
 +
 +
Automatic:
 +
Loop
 +
{
 +
 +
Gosub, FindPapy
 +
 +
if ErrorLevel = 0
 +
{
 +
NewX := Px + 2
 +
NewY := Py + 5
 +
MouseGetPos, OldX, OldY
 +
Click Right %NewX%, %NewY%
 +
MouseMove, %OldX%, %OldY%
 +
Sleep 150
 +
}
  
 
}
 
}
 +
 +
 +
 +
FindPapy:
 +
PixelSearch, Px, Py, 100, 450, 1132, 715, 0xDBD401, 25, Fast|RGB
 +
return
 
</pre>
 
</pre>

Revision as of 07:26, 10 October 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


;Explanation of Modes:
;Automatic Mode: means that it is looking for papy, continuously and all the time, and will pick them if you are in range.

;Manual Mode: means that it will not look until you press the F1 key. It will pick everything within range and stop. 
;After stopping, it will wait for you to press the F1 key again and repeat.

;While Automatic seems more better, sometimes it is annoying. If it see a single papy in range and you have 5 more a couple coords away
;then it will pick the 1 first, and sometimes your avatar stops running. You might find yourself, clicking to keep running as much as if you picked the papy by hand.
;The benefit of Manual mode is you can run and stand in the center of a big papy patch, and have it gather them all at once. Then you are free to run to next patch
;without your avatar stopping on single papys.



;The video settings I am using is:
;Shadow Quality: 2nd checkbox (from left)
;Time of day lighting: 1st checkbox
;Light Intensity: 3rd checkbox

;Screenshot avail at http://www.atitd.org/wiki/tale4/User:Cegaiel/Macros/PapyPicker


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


;Author: Cegaiel
;Date: 9/16/2010
;Last Update: 10/10/2010


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







	; Wait for the window to become active, then get the window stats
	WinWait, eGenesis Client, 
	IfWinNotActive, eGenesis Client, , WinActivate, eGenesis Client, 
	WinWaitActive, eGenesis Client,
	WinGetActiveStats, win_Title, Xmax, Ymax, win_Xpos, win_Ypos



	Gui, Add, Text,, Mode:
	Gui, Add, DropDownList, vMode Choose1, Automatic|Manual
	Gui, Add, Button, gStart, START
	Gui, Show
	return




Start:
WinActivate, eGenesis Client
	Gui, Submit



;This just simply sets the zoom level to what I felt was just right. It is not critical you can zoom in or out a couple times as you see fit.
;The below is optional and can be removed...



Msgbox, The screen will now zoom in, then back out to a descent zoom level in F6 mode!`n`nDon't move the mouse until you are given the Ready box, in a moment.


	Send {F6}

	Xcenter := Xmax//2 - 3
	Ycenter := Ymax//2 + 16
	MouseMove, Xcenter, Ycenter, 0


Loop, 32
{
		click, WU
		sleep 250
}

	MouseMove, Xcenter, Ycenter, 0


Loop, 16
{
		click, WD
		sleep 250
}



; End zooming


SetDefaultMouseSpeed,0
  SetMouseDelay,-1



if (Mode = "Automatic")
{
Msgbox, Papy Picker now ready (Automatic Mode)!`n`nJust start running past pappy and it will automatically pick it via right click.`n`nCtrl+P to pause/resume, Ctrl+R to reload script
Gosub, Automatic
} else {
Msgbox, Papy Picker now ready (Manual Mode)!`n`nRun to a patch of papy, stand in the middle of it and hit F1 to pick everything in range, via right click.`n`nCtrl+P to pause/resume, Ctrl+R to reload script
Gosub, Manual
}




;This searches for the color of pappy (0xDBD401) in a square box around the avatar

;The upper left corner coords are 100,450
;The bottom right corner is 1132,715
;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...



;NOTE: The number 25 in the Pixelsearch line represents how many shades away from color 0xDBD401 that it will accept as a valid color
;If you are having problems with in not clicking the color, try raising that number 5 shades at a time (ie 30)
;If it is too sensitive and clicking on all kinds of stuff around you, then try lowering it 5 shades a time (ie 20)

;Also it is possible some video cards may show the papy color slightly different. If after changing your video settings to match mine and it still does not work,
;Then use my Get Mouse Position macro to find out what the color for you is and change the 0xDBD401 to match it.



Manual:
KeyWait, F1, D


WinActivate, eGenesis Client


Loop 25
{

Gosub, FindPapy

if ErrorLevel = 0
{
NewX := Px + 2
NewY := Py + 5
MouseGetPos, OldX, OldY
Click Right %NewX%, %NewY%
MouseMove, %OldX%, %OldY%

Sleep 150
}
}

Gosub, Manual








Automatic:
Loop
{

Gosub, FindPapy

if ErrorLevel = 0
{
NewX := Px + 2
NewY := Py + 5
MouseGetPos, OldX, OldY
Click Right %NewX%, %NewY%
MouseMove, %OldX%, %OldY%
Sleep 150
}

}



FindPapy:
PixelSearch, Px, Py, 100, 450, 1132, 715, 0xDBD401, 25, Fast|RGB
return