26.12.2011, 14:44
Quote:
(58732)SendClientMessageToAll(playerid, COLOR_YELLOW, "Administrator %s is now on duty. (/report for assistance.")); GetPlayerNameEx(playerid); |
//edit:
oh wait, you have to format the string, too.
//edit 2:
PHP код:
new string[128];
new AdminName[28];
GetPlayerName(playerid, AdminName, sizeof(AdminName));
format(string, sizeof(string), "Administrator %s is now on duty. (/report for assistance.", AdminName);
SendClientMessageToAll(COLOR_YELLOW, string);