How do I code that with an active in the event editor? at every 10 seconds have the active pick a random speed between 2 and 10? (do I need any extension?) thanks
How do I code that with an active in the event editor? at every 10 seconds have the active pick a random speed between 2 and 10? (do I need any extension?) thanks
Random(8)+1 I found it, thanks !!!!!!!!
Depending on how random you want it you may want to use a seeded RNG. Random(x) isn't so random as it's not seeded. So you'll quite often see the same repeated numbers over and over. There's a random number extension that will give you a closer random number then using "random(x)".