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:Amethyst Bastet"

From A Tale in the Desert
Jump to navigationJump to search
(New page: My flax macro runs on ACTool. delay 5000 //f8 default view, screen lock, north to top of screen, gait walking, chat closed loop 1 // selects window MousePos 794, 8 leftclick delay 500 ...)
 
Line 1: Line 1:
 
My flax macro runs on ACTool.
 
My flax macro runs on ACTool.
  
 
+
<pre>
 
delay 5000
 
delay 5000
  
Line 141: Line 141:
  
 
end
 
end
 +
</pre>

Revision as of 01:29, 25 February 2010

My flax macro runs on ACTool.

delay 5000

//f8 default view, screen lock, north to top of screen, gait walking, chat closed

loop 1 // selects window
MousePos 794, 8
leftclick
delay 500
end


loop 10 //how many times to run

loop 1  // position mouse at menu and lay first bed
MousePos 197, 52
delay 200
LeftClick
delay 1000
end

loop 1  //walk a square down and lay second bed
KeyDown {DOWN}
delay 200
LeftClick
delay 1000
end

loop 1 //walk a square right and lay third bed
KeyDown {RIGHT}
delay 200
LeftClick
delay 1000
end

loop 1  //walk a square up and lay fourth bed
KeyDown {UP}
delay 200
LeftClick
delay 1000
end

loop 1  //walk a square right and lay fifth bed
KeyDown {RIGHT}
delay 200
LeftClick
delay 1000
end

loop 1  //walk a square down and lay sixth bed
KeyDown {DOWN}
delay 200
LeftClick
delay 1000
end

loop 1  //walk to bottom left bed wait for weeds
KeyDown {LEFT}
delay 200
KeyDown {LEFT}
delay 23500
end

loop 3  //weeds twice and harvests

loop 1  //weed top left bed
MousePos 826, 753
delay 500
LeftClick
delay 500
MousePos 883, 743
delay 500
LeftClick
delay 500
end

loop 1  //weed bottom left
MousePos 822, 815
delay 500
LeftClick
delay 500
MousePos 879, 805
delay 500
LeftClick
delay 500
end

loop 1  //weed bottom middle
MousePos 915, 806
delay 500
LeftClick
delay 500
MousePos 968, 798
delay 500
LeftClick
delay 500
end

loop 1  //weed top middle
MousePos 906, 744
delay 500
LeftClick
delay 500
MousePos 957, 734
delay 500
LeftClick
delay 500
end

loop 1  //weed top right
MousePos 997, 732
delay 500
LeftClick
delay 500
MousePos 1055, 723
delay 500
LeftClick
delay 500
end

loop 1  //weed bottom right
MousePos 999, 796
delay 500
LeftClick
delay 500
MousePos 1048, 788
delay 500
LeftClick
delay 10000
end

end

loop 1  //walks back to starting position
KeyDown {UP}
delay 200
end


end