Quote:
|
Originally Posted by Anpheus
Use a global variable that goes up by 1 every time this_second executes. When it hits 20, execute this_third.
|
yeah that works like something easy for example
Code:
new x
public this_first (id) {
<execute this_second every 0.5 seconds for 10 seconds>
<execute this_third after the above is complete>
}
public this_second (id) {
x += 1
if (x = 20) {
set_task(0,"this_third")
}
public this_third (id) {
}