20.02.2014, 14:14
(
Последний раз редактировалось orlanxd; 21.02.2014 в 04:12.
)
eu queria colocar esse sistema de VIP quando o player VIP fala no chat e em frente ao nick aparece que ele e VIP e sу para quem esta prуximo pode ver, me passaram esse codigo mais nao funcionou so mudou a cor no nick de todos os players e a conversa no chat ficou global
pawn Код:
new SouVip[MAX_PLAYERS];
public OnPlayerText(playerid, text[])
{
new nome[MAX_PLAYER_NAME];
new String[128];
if(SouVip[playerid] == 1)
{
GetPlayerName(playerid, nome, sizeof(nome));
format(String, sizeof(String), "%s[%d][V.I.P]: %s", nome, playerid, text);
SendClientMessageToAll(GetPlayerColor(playerid), String);
return 0;
}
return 1;
}