23.05.2013, 14:01
e dessa forma:
pawn Код:
CMD:reforco(playerid)
{
if(CSMBR[playerid] == ROCAM || CSMBR[playerid] == ROTA)
{
new Float:x, Float:y, Float:z;
new name[MAX_PLAYER_NAME+1], string[200+MAX_PLAYER_NAME+1];
GetPlayerPos(playerid, x, y, z);
GetPlayerName(playerid, name, sizeof(name));
format(string, sizeof(string), "O Policial %s Precisa de apoio urgente. Foi marcado no mapa de todos os oficiais o local do Policial", name);
SendFamilyMessage(1,Vermelho, string);
SendFamilyMessage(4,Vermelho, string);00
for(new i = 0; i <= MAX_PLAYERS; i++) // crйditos mau.tito pela ideia
{
if(IsPlayerConnected(i) && CSMBR[i] == ROCAM || CSMBR[i] == ROTA)
{
SetPlayerCheckpoint(i, x, y, z, 2.0);
}
}
}
else
{
SendClientMessage(playerid, 0xAA3333AA, "Vocк nгo pode pedir reforзo sendo que nгo й policial!");
}
return 1;
}