18.02.2016, 22:29
Quote:
|
eu coloquei, mas estб dando este error:
C:\Users\Guilherme\Desktop\server\filterscripts\ad min.pwn(1676) : error 017: undefined symbol "pAdmin" Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase |
Coloque assim:
PHP код:
// Lб em cima no FS
new pAdmin[MAX_PLAYERS];
PHP код:
public OnPlayerText ( playerid, text[] ) {
new string [ 128 ], Nome [ MAX_PLAYER_NAME ] ;
GetPlayerName ( playerid, Nome, MAX_PLAYER_NAME ) ;
if (pAdmin[playerid] >= 1 ) {
format ( string, 128, "[ Admin ]: %s ID:%d: %s", Nome, playerid, text ) ;
SendClientMessageToAll ( -1, string ) ;
return 1;
}
else {
format ( string, 128, "%s ID:%d: %s", Nome, playerid, text ) ;
SendClientMessageToAll ( -1, string ) ;
}
return 1;
}


