29.06.2011, 02:22
Do you want it on when an Admin Connects? here:
pawn Код:
public OnPlayerConnect(playerid) // Player Connection
{
if(IsPlayerAdmin(playerid)) // Checks if the Player is Admin
{
SetPlayerColor(playerid, 0xFF00D8FF); // Sets the Admin pink coloured
}
return 1;
}