Quote:
Originally Posted by TopShooter2
You can use the format like that:
PHP код:
new string[80+MAX_PLAYER_NAME]; // You can enter the number of characters inside the brackets. MAX_PLAYER_NAME = 24.
format(string, sizeof(string), "%s is now admin on-duty, please type /ask for assistance", playerData[playerid][tempAdminName]"); // Here you can format the string we defined above, you can use any other name of the defination instead of 'string', it's up to you.
SendClientMessageToAll(COLOR_WHITE, string); // Here we can send the formatted string into a client message.
|
No need for 80, just 54 + MAX_PLAYER_NAME.