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:Drakkett

From ATITD5
Revision as of 20:26, 15 November 2010 by Illusid (talk | contribs) (Created page with "Global $Paused HotKeySet("=", "TogglePause") $a = InputBox( "Question", "How Many Cycles?", "9999999999999999999" ) $b = 0 $c = InputBox( "Question", "Cooldown Time in ms?", "650...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search

Global $Paused HotKeySet("=", "TogglePause") $a = InputBox( "Question", "How Many Cycles?", "9999999999999999999" ) $b = 0 $c = InputBox( "Question", "Cooldown Time in ms?", "650" ) While 1 $b = 0

Do Send ( "s" ) Sleep ( $c ) $b = $b + 1 Until $b = $a WEnd Func TogglePause( )

   $Paused = NOT $Paused
   While $Paused
       sleep(100)
       ToolTip('Script is "Paused"',0,0)
   WEnd
   ToolTip("")

EndFunc