Quote:
Originally Posted by danonix
As topic says, how to get random ROUNDS in each map, so sometimes function happens only one time in map, sometimes 3 times etc.
|
Your request is unclear. Do you want a random number of rounds OR a function that only happens a random number of times on a map? One or the other.
Quote:
Originally Posted by Napoleon_be
new variable = random(100)
if(variable < 10) {
StartFunction()
}
|
That is a 10% probability of StartFunction() being executed. Not quite the same but I guess it could be an answer considering the poorly formed question.
__________________