14.02.2014, 10:49
It's declared as global but it's better to use local variables for strings (basically arrays) because you can use lower size and it's not going to be a waste.
Replace:
with:
You had also 2 arguments more but without a placeholder in the format.
Replace:
pawn Код:
new string[128];
format(string, sizeof(string), "Please forgive %s for killing the hunted %s.", GetPlayerNameEx(killerid),killerid,GetPlayerNameEx(playerid),playerid);
SendClientMessageToAllEx(COLOR_LIGHTBLUE, string);
pawn Код:
new sz_Msg[83];
format(sz_Msg, sizeof(sz_Msg), "Please forgive %s for killing the hunted %s.", GetPlayerNameEx(killerid),GetPlayerNameEx(playerid));
SendClientMessageToAllEx(COLOR_LIGHTBLUE, sz_Msg);