16.07.2013, 04:41
ops kk
Caso alguйm tenha uma forma melhor de usar me fale й bom que eu aprendo
eu utilizo assim e funciona perfeitamente
OBS: vocк estб utilizando um Filter Script do Biel COP nгo se esqueзa de manter os devidos crйditos por favor.
Caso alguйm tenha uma forma melhor de usar me fale й bom que eu aprendo
eu utilizo assim e funciona perfeitamente
OBS: vocк estб utilizando um Filter Script do Biel COP nгo se esqueзa de manter os devidos crйditos por favor.
pawn Код:
public OnPlayerText(playerid, text[])
{
if(VIP[playerid] == 1)
{
new messagetext[128], pname[MAX_PLAYER_NAME];
SetPlayerChatBubble(playerid, text, 0xFFFDE8AA, 100.0, 10000);
format( messagetext, 128, "[VIP]%s diz: %s", pname, text );
SendPlayerMessageToAll( playerid, messagetext );
}
if(VIP[playerid] == 0)
{
new messagetext[128], pname[MAX_PLAYER_NAME];
SetPlayerChatBubble(playerid, text, 0xFFFDE8AA, 100.0, 10000);
format( messagetext, 128, "[ID: %i]%s diz: %s", playerid, pname, text );
SendPlayerMessageToAll( playerid, messagetext );
}
return false;
}