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

From ATITD5
Jump to navigationJump to search
(Created page with "Global $Paused HotKeySet("=", "TogglePause") $a = InputBox( "Question", "How Many Cycles?", "9999999999999999999" ) $b = 0 $c = InputBox( "Question", "Cooldown Time in ms?", "650...")
 
 
(One intermediate revision by one other user not shown)
Line 1: Line 1:
Global $Paused
+
 
HotKeySet("=", "TogglePause")
+
Resident of Taygete.
$a = InputBox( "Question", "How Many Cycles?", "9999999999999999999" )
+
 
$b = 0
+
 
$c = InputBox( "Question", "Cooldown Time in ms?", "650" )
+
[[User:Drakkett/WorldBuilder]]  <br>
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
 

Latest revision as of 02:51, 5 March 2011

Resident of Taygete.


User:Drakkett/WorldBuilder