11.05.2014, 07:57
Thanks for that, solved a potential future problem, but it still didnt really solve my current problem. same error.
Here, i even updated the script a bit.
Here, i even updated the script a bit.
Код:
public OnPlayerLogin(playerid) { new playername[12], string[64]; if (pInfo(playerid)[pAdmin] == 0) { format(string,sizeof(string),"Player %s has joined the server.",playername); SendClientMessageToAll(0xFFFFFFAA,string); } else if(pInfo(playerid)[pAdmin] == 1) { format(string,sizeof(string),"Applicant %s has joined the server.",playername); SendClientMessageToAll(0xFFFFFFAA,string); } else if(pInfo(playerid)[pAdmin] == 2) { format(string,sizeof(string),"Cadet %s has joined the server.",playername); SendClientMessageToAll(0xFFFFFFAA,string); } else if(pInfo(playerid)[pAdmin] == 3) { format(string,sizeof(string),"Admin %s has joined the server.",playername); SendClientMessageToAll(0xFFFFFFAA,string); } else if(pInfo(playerid)[pAdmin] == 4) { format(string,sizeof(string),"Server Tech %s has joined the server.",playername); SendClientMessageToAll(0xFFFFFFAA,string); } else if(pInfo(playerid)[pAdmin] == 5) { format(string,sizeof(string),"Owner %s has joined the server.",playername); SendClientMessageToAll(0xFFFFFFAA,string); } return 1; }