ok whats wrong with the following?
(label) start:
@=<refobj>callscript.......
@=wait 1000 ms
gotolabel start:
or what do i do to make a script loop, and call the other script repeatedly?
how do i make a script loop?
Moderators: Scripting / Modding Moderators, Moderators for English X Forum
-
- Posts: 2282
- Joined: Thu, 29. Jan 04, 08:19
how do i make a script loop?
Last edited by AalaarDB on Mon, 23. Feb 04, 04:50, edited 1 time in total.
-
- Posts: 5505
- Joined: Wed, 6. Nov 02, 20:31
you could do
or while anything really, will loop until the conditions are no longer correct.
Code: Select all
while [TRUE]
do what ever you like
don't forget to have some way of stopping this
a Return null or something
end
-
- Posts: 2282
- Joined: Thu, 29. Jan 04, 08:19