12.10.2012, 12:08
pawn Код:
SendClientMessage(killerid, COLOR_YELLOW, "Congratulations you killed %s !", playerid);
EDIT: playerid isn't a string either, if you wanted names it'd be;
pawn Код:
new pName[MAX_PLAYER_NAME], string[128];
pName = GetPlayerName(playerid, pName, MAX_PLAYER_NAME);
format(string, sizeof(string), "Congratulations you killed %s !", pName);
SendClientMessage(killerid, COLOR_YELLOW, string);