How would I know? I don't know what plugins you're running.
Here's another problem:
Code:
L 11/19/2017 - 22:22:51: Invalid player id 66
L 11/19/2017 - 22:22:51: [AMXX] Displaying debug trace (plugin "test1.amxx")
L 11/19/2017 - 22:22:51: [AMXX] Run time error 10: native error (native "get_use
r_flags")
L 11/19/2017 - 22:22:51: [AMXX] [0] test1.sma::SayRegistered (line 111)
(Counter-Terrorist) Black Rose : hello
Code:
new pnum,
players[32];
get_players( players,pnum );
for( new i;i < pnum;i++ )
{
if( get_user_team( id ) == get_user_team( player[i] ) || get_user_flags( player[i] ) & ADMIN_FLAGS )
ColorChat( players[i] , iColor, sFormat );
}
player[] is a string containing the player name, players[] is the array of players.
have you even looked at the log? It's so much easier to debug things with the server console at least partially visible on screen so you see when bugs occur. That will help you to figure out the cause.