14.03.2019, 15:01
Quote:
help me with a restriction,like if 10 people have teleported to the event,i want the others to not be able to tp anymore |
Код:
new playersteleported; CMD:tpevent(playerid, params[]) { foreach(new i : Player){ if(EventOrganizer[i] == 1){ GetPlayerPos(i, Float, Float:y, Float:z); } if(playersteleported > 11) return SCM(playerid, -1, "u can't teleport anymore"); SetPlayerPos(playerid, Float, Float:y, Float:z); } playersteleported++ return 1; }