11.05.2013, 08:34
Hey
I need to create a system to make a my server say Server Owner Excelize has logged into xxxx
I have a basic script for the same thing but admins:
I need the same thing but to say Server Owner Excelize has logged in in red..
Help please
I need to create a system to make a my server say Server Owner Excelize has logged into xxxx
I have a basic script for the same thing but admins:
Код:
public OnPlayerConnect(playerid) { if(IsPlayerAdmin(playerid)) { new name[MAX_PLAYER_NAME]; new string[218]; GetPlayerName(playerid, name, sizeof(name)); format(string, sizeof(string), "Admin %s connected!!", name); SendClientMessageToAll(-1, string); } return 1; }
Help please