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.

User:Dymo/clay

From ATITD5
Jump to navigationJump to search
  1. cs ----------------------------------------------------------------------------
AutoIt Version: 3.3.6.1
Author:         myName
Script Function:

Template AutoIt script.

  1. 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