The Wiki for Tale 7 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:Shayra"

From ATITD7
Jump to navigationJump to search
(Created page with "HI :D My main home is Seven Lakes. I am working on Public Works called Amigos by University of Body. Look me up and acro with me!")
 
Line 1: Line 1:
 
HI :D
 
HI :D
  
My main home is Seven Lakes. I am working on Public Works called Amigos by University of Body.
+
My main home is Seven Lakes. My main focus is Amigos Public Works by University of Body.<br>
Look me up and acro with me!
+
Look me up and acro with me!<br>
 +
 
 +
 
 +
 
 +
 
 +
 
 +
===MACRO===
 +
<br>
 +
<pre>
 +
//General purpose slate and clay collector.  Works best without water jugs
 +
//or a fishing pole.  To begin, hover your mouse over the icon
 +
//you wish to collect in ATITD (i.e. be over a patch of clay or a piece of
 +
//slate and have this program active.  Press F2, and the macro will start.
 +
Constants
 +
Red = 0
 +
Green = 0
 +
Blue = 0
 +
XPos = 0
 +
YPos = 0
 +
CurrKey = 0
 +
End
 +
SetConst XPos = {MouseX}
 +
SetConst YPos = {MouseY}
 +
LoadRGB $XPos, $YPos
 +
SetConst Red = {RGBRed}
 +
SetConst Blue = {RGBBlue}
 +
SetConst Green = {RGBGreen}
 +
SetConst CurrKey = {GlobalKeys}
 +
 
 +
 
 +
 
 +
loop 10000
 +
 
 +
 
 +
GetRed  $XPos, $YPos = $Red
 +
GetGreen  $XPos, $YPos = $Green
 +
GetBlue  $XPos, $YPos = $Blue
 +
 +
MousePos $XPos, $YPos
 +
Delay 10
 +
  LeftClick
 +
End
 +
End
 +
End
 +
 +
Delay 150
 +
End
 +
</pre>

Revision as of 07:23, 21 September 2015

HI :D

My main home is Seven Lakes. My main focus is Amigos Public Works by University of Body.
Look me up and acro with me!



MACRO


//General purpose slate and clay collector.  Works best without water jugs
//or a fishing pole.  To begin, hover your mouse over the icon
//you wish to collect in ATITD (i.e. be over a patch of clay or a piece of
//slate and have this program active.  Press F2, and the macro will start.
Constants
Red = 0
Green = 0
Blue = 0
XPos = 0
YPos = 0
CurrKey = 0
End
SetConst XPos = {MouseX}
SetConst YPos = {MouseY}
LoadRGB $XPos, $YPos
SetConst Red = {RGBRed}
SetConst Blue = {RGBBlue}
SetConst Green = {RGBGreen}
SetConst CurrKey = {GlobalKeys}



loop 10000


GetRed  $XPos, $YPos = $Red
	GetGreen  $XPos, $YPos = $Green
		GetBlue  $XPos, $YPos = $Blue
	
			MousePos $XPos, $YPos
			Delay 10
  		LeftClick 
		End
	End
End
	
Delay 150
End