Is it possible to have something randomly choose and do and event? If so how? for example:
having 3 events and every 10 seconds it randomly choose one of those 3 events and then carries out selected event
Printable View
Is it possible to have something randomly choose and do and event? If so how? for example:
having 3 events and every 10 seconds it randomly choose one of those 3 events and then carries out selected event
You don't have to use Global Value A, you could just use a counter.Code:Every 10 Seconds:
-Set Global Value A to random(2)
Every 10 Seconds--
Global Value A = 0:
-[Action]
Every 10 Seconds--
Global Value A = 1:
-[Action]
Every 10 Seconds--
Global Value A = 2:
-[Action]
You can do this with a random value, such as a counter.
User clicks on a button
Counter: set random(4)-1 (that would be based on 0-3 counter)
Counter=1
Do your event
Make sure you reset your counter to 0
Marv
Beat me Jaffob