Posts: 1,506
Threads: 69
Joined: Feb 2008
Quote:
Originally Posted by Mikkel_Pedersen
pawn Код:
if(IsPlayersInBikeMadness == 10)
By the code above you check if there is exactly 10 players in the bike madness. Which means it won't get called when there is 11, 12, 13 players... and so on.
You would simply change it to this:
pawn Код:
if(IsPlayersInBikeMadness >= 10)
This checks if there is 10 or more players in the bike madness. I assume that's the only part you got not to work correctly.
|
Lol it shouldn't matter, since the 11th player shouldn't be able to enter and It should never have to check for the rest.