17.07.2012, 09:16
Hi all,i have make a dialog but how i can send a message to the all medic team and not to all players only to spesific skin,for example send a message only to skin 275(medic)
PHP код:
if(dialogid == DIALOG_EMPHONE)
{
if(response)
{
if(listitem == 0)
{
new name[MAX_PLAYER_NAME], string[48];
GetPlayerName(playerid, name, sizeof(name));
format(string, sizeof(string), " %s Called a medic.Closest unit respond.", name );
SendClientMessageToAll(-1, string);
}
if(listitem == 1)
{
new name[MAX_PLAYER_NAME], string[48];
GetPlayerName(playerid, name, sizeof(name));
format(string, sizeof(string), " %s Called the police.Closest units respond.", name );
SendClientMessageToAll(-1, string);
}
if(listitem == 2)
{
new name[MAX_PLAYER_NAME], string[48];
GetPlayerName(playerid, name, sizeof(name));
format(string, sizeof(string), " %s Called the Fire Dept.Closest units respond.", name );
SendClientMessageToAll(-1, string);
}
}
return 1;
}