ID:802813
 
(See the best response by Stoneman.)
Code:


Problem description:
Well, I have my own Tournement Code That I Made, I want to know How Do i Loop it.

I know first step be putting it as a proc.

Basically I Want To Loop a Tourny Automutically Every 10min.


Anyone can give me a simple code for looping proc.

Cause I look up some tuts, and resource section and nothing.
Best response
proc/something_timer()
spawn()
something()
sleep(100)
something_timer()
something_timer()

This snippet will call (loop) something() every 10 seconds.