31.07.2010, 20:14
In OnGameModeInit
Bottom of script
Not sure how ud do the rocket thing tho.
pawn Код:
SetTimer("weptimer",180000,true);
pawn Код:
forward weptimer(playerid);
public weptimer(playerid)
{
for(new i; i <= MAX_PLAYERS; i++)
{
if(GetPlayerTeam(i) == TEAM_HIDER)
{
//giveweapon here
SendClientMessage(i,0xff0000FF,"Shoot Flares Now");
}
}
return 1;
}