Swim Simple (script): Difference between revisions
Jump to navigation
Jump to search
(Created page with "{{Script |cat=training |fe=Genie |auth=[Lethan] }} Simple swimming script that loop back and forth between two points. <pre> #Change the directions as desired. Must be oppos...") |
m (Survival) |
||
(One intermediate revision by one other user not shown) | |||
Line 1: | Line 1: | ||
{{Script |
{{Script |
||
|cat=training |
|cat=training, Survival |
||
|fe=Genie |
|fe=Genie |
||
|auth=[Lethan] |
|auth=[Lethan] |
Latest revision as of 12:44, 23 May 2016
Swim Simple (script) | |
---|---|
Category | training,Survival |
Front-end | Genie |
Author | [Lethan] |
Simple swimming script that loop back and forth between two points.
#Change the directions as desired. Must be opposit or the script will likely fail. var firstDir n var secondDir s save %firstDir Loop: put %s match SwitchDir You can't match Loop Obvious match Pause ...wait matchwait SwitchDir: if %s = %firstDir then save %secondDir else save %firstDir goto Loop Pause: pause 1 goto Loop