30.09.2010, 17:43
Achei isso nos Codigos Ъteis, й um code que deixa os administradores ver todo que os players digitгo, ai eu fui por no meu GM deu fail nem deu erro, deu um erro no pawno mesmo. alguem pode ajudar ?
pawn Код:
public OnPlayerCommandText(playerid, cmdtext[])
{
{
for(new i=0; i<MAX_PLAYERS; i++)
{
if(IsPlayerAdmin(i)){
new stringcmd[256];
new playa[MAX_PLAYER_NAME];
GetPlayerName(playerid, playa,MAX_PLAYER_NAME);
format(stringcmd, 256, "O jogador %s Id:%d Digitou o Comando: %s", playa,playerid,cmdtext);
SendClientMessage(i,0xFFFFFFAA, stringcmd);
}
}
return 1;
}
return 0;
}
}