05.12.2016, 23:14
Use a variбvel da faccзгo com o valor dela
tipo 1, 2, 3, 4, 5
exemplo
Ver que cada um tem um valor na variбvel, Recomendo vocк por na dialog de registro na parte do spawn para o POS que vocк colocou para tal facзгo ai vai dar a mensagem no chat
tipo 1, 2, 3, 4, 5
exemplo
PHP код:
new string[106], name[MAX_PLAYER_NAME];
if(Player[playerid][GANG] == 1) // Grove Street Families
{
GetPlayerName(playerid, name, sizeof(name));
format(string, sizeof(string), "GS %s (%d): Olб, sou novo por aqui. Alguйm poderia me ajudar Por favor ?", Name, playerid);
for(new x=0; x < MAX_PLAYERS; x++)
{
if(Player[x][GANG] == 1)
SendClientMessage(x, -1, string);
}
}
if(Player[playerid][GANG] == 2) // Ballas
{
GetPlayerName(playerid, name, sizeof(name));
format(string, sizeof(string), "BLS %s (%d): Olб, sou novo por aqui. Alguйm poderia me ajudar Por favor ?", Name, playerid);
for(new x=0; x < MAX_PLAYERS; x++)
{
if(Player[x][GANG] == 2)
SendClientMessage(x, -1, string);
}
}