05.11.2010, 21:42
I have a mission command. I want to know after 30 seconds how match players has joined the mission.
pawn Код:
dcmd_join(playerid, params[])
{
SendClientMessage(playerid, Color, "You joined the mission " Get or die"");
SetTimerEx("SpawnInMission",30000,0,"d",playerid);
return 1;
}
public SpawnInMission()
{
//How players joined the mission.
//My other stuff that i dont want to show.
}