May i have some help
#2

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.
Reply


Messages In This Thread
May i have some help - by yarrum3 - 31.01.2011, 05:41
Re: May i have some help - by Mikkel_Pedersen - 31.01.2011, 10:26
Re: May i have some help - by Mike Garber - 31.01.2011, 11:10
Re: May i have some help - by Rachael - 31.01.2011, 11:53
Re: May i have some help - by alpha500delta - 31.01.2011, 13:18

Forum Jump:


Users browsing this thread: 1 Guest(s)