13.05.2009, 21:19
i think you mean something like this
Код:
public OnPlayerConnect ( playerid )
{
new playerName[24];
GetPlayerName( playerid, playerName, 24 );
if ( strcmp( playerName, "RedNick", true ) == 0 ) SetPlayerColor( playerid, 0xFF0000AA );
if ( strfind( playerName, "Green", true ) != -1 ) SetPlayerColor( playerid, 0x339966AA );
return 1;
}

