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:Dymo/clay"
From ATITD5
Jump to navigationJump to search (Created page with "#cs ---------------------------------------------------------------------------- AutoIt Version: 3.3.6.1 Author: myName Script Function: Template AutoIt script. #c...") |
(No difference)
|
Latest revision as of 18:07, 11 December 2010
- cs ----------------------------------------------------------------------------
AutoIt Version: 3.3.6.1 Author: myName
Script Function:
Template AutoIt script.
- ce ----------------------------------------------------------------------------
Global $Paused HotKeySet("{PAUSE}", "TogglePause")
WinActivate("eGenesis Client", "")
- onion 1
Opt("SendKeyDownDelay", 500)
$i = 0 Do send("{LEFT}") MouseClick("left", 92, 70, 1) sleep(800) send("{RIGHT}") MouseClick("left", 92, 70, 1) sleep(800)
$i = $i + 1
Until $i = 300
Func TogglePause()
$Paused = NOT $Paused While $Paused sleep(100) ToolTip('Script is "Paused"',0,0) WEnd ToolTip("")
EndFunc