17.02.2011, 18:44
How to make a Capture Zone Gangzone
With checkpoint
With checkpoint
new Checkpoint[MAX_PLAYERS]; public OnGameModeInIt() { Checkpoint = SetPlayerCheckpoint(playerid, Float:x,Float:y,Float:z,8); return 1; } public OnPlayerEnterCheckpoint(playerid) { if(Checkpoint[playerid] = 1) { SendClientMessage(playerid,color,"wait 20 seconds"); SetTimerEx("SetZone",20000,false,"i",playerid); } return 1; } forward SetZone(playerid); public SetZone(playerid) { if... return 1; }