10.03.2014, 10:47
In the script you have at the top new 1vs1; but in the command where it says the arena is full you use this.
Where it should be this
or you can do it like this
pawn Код:
if(1vs1[playerid] == 2) return SCM(playerid,COLOR_RED,"1 VS 1 Arena is Full");
pawn Код:
if(1vs1 == 2) return SCM(playerid,COLOR_RED,"1 VS 1 Arena is Full");
pawn Код:
if(1vs1 == 2) return SendClientMessage(playerid,COLOR_RED,"1 VS 1 Arena is Full");