16.03.2018, 19:23
Tenta desta forma :
Vocк nгo explicou qual й o problema,a mensagem nгo estб aparecendo ? passe o comando que o player digita...Pelo que estou vendo tem algumas coisas erradas ai.
PHP код:
if(response)
{
new szString[128], szName[28], texto[256];
GetPVarString(playerid, "varNoob", texto, 256);
GetPlayerName(playerid, szName, 28);
if(PlayerInfo[playerid][pAdmin] >= 1 && admtrampando[playerid] == 1 || PlayerInfo[playerid][pAdminTemp] >= 1) // Opзгo 1
{
format(szString, 128, "{009999}({009966}Canal /n{009999}) [Administrador{009999}] %s (%d): %s", szName,playerid, texto);
SendClientMessageToAll(-1, szString);
}
if(PlayerInfo[playerid][pHelper] >= 1 && helpertrampando[playerid] == 1) // Opзгo 2
{
format(szString, 128, "{009999}({009966}Canal /n{009999}) [Helper{009999}] %s (%d): %s", szName,playerid, texto);
SendClientMessageToAll(-1, szString);
}
else // Opзгo 3
{
format(szString, 128, "{009999}({009966}Canal /n{009999}) [Nнvel %d{009999}] %s (%d): %s", PlayerInfo[pLevel], szName,playerid, texto);
SendClientMessageToAll(-1, szString);
}
ChatNoob[playerid] = GetTickCount();
return 1;
}