Thanks fuzzy
I just had to fix it up a lil bit
"gPlayer" to gPlayers and then
[pawn]else if( IsCop[ plr ] == 1 )
{
new szMsg[ 128 ];
format( szMsg, sizeof( szMsg ), "*****[Error] %s is a cop!******", gPlayer[playerid] );
SendClientMessage( playerid, COLOR_YELLOW, szMsg );
return 1;
}[/pawn]
Make this look like This
[pawn]else if( IsCop[ plr ] == 1 ) {
format( szMsg, sizeof( szMsg ), "*****[Error] %s is a cop!******", gPlayer[playerid] );
SendClientMessage( playerid, COLOR_YELLOW, szMsg );
}[/pawn]