boa tarde. estou com um problema.. o chat local ta tudo funcionando 100% o unico porém que quando eu sou admin ele não mostra a tag no chat ao lado do nick.. eu acho que fiz tudo certo..
só mostra quando eu seto o admin ai ele reloga dnv e já não aparece.
só mostra quando eu seto o admin ai ele reloga dnv e já não aparece.
Código PHP:
new StringTexto[128];
format(StringTexto, sizeof(StringTexto), "%s[%d] diz: %s", Nome(playerid), playerid, text);
new Float:PosChatLocalX, Float:PosChatLocalY, Float:PosChatLocalZ; GetPlayerPos(playerid, PosChatLocalX, PosChatLocalY, PosChatLocalZ);
for(new i; i < MAX_PLAYERS; i++)
{
if(IsPlayerConnected(i))
{
if(IsPlayerInRangeOfPoint(i, 30.0, PosChatLocalX, PosChatLocalY, PosChatLocalZ))
{
if(!IsPlayerAdmin(playerid))
{
SendClientMessage(i, -1, StringTexto);
}
else
{
format(StringTexto, sizeof(StringTexto), "[{27AE60}%s{FFFFFF}] %s[%d] Diz: %s", admins(playerid, 1), Nome(playerid), playerid, text);
SendClientMessage(i, -1, StringTexto);
}
}
}
}