How do I randomize the effects of a condition?
Printable View
How do I randomize the effects of a condition?
A little more info about what you are trying to do might help. :)
stephen1980
I have an enemy, whom every however many seconds will do one of 3 things.
Do you want your enemy to randomly choose one of those 3 things every so many seconds? If so you could do something like this:
+Every (however many secs)
[Set Alterable Value A to "Random(3)+1"
+Every (however many secs)
+Alterable Value A = 1
[Enemy does 1st action]
+Every (however many secs)
+Alterable Value A = 2
[Enemy does 2nd action]
+Every (however many secs)
+Alterable Value A = 3
[Enemy does 3rd action]
stephen1980
Alright, thanks!
No problem.
stephen1980