10.03.2010, 18:23
You have to format a string before using GameText.Here's an example
pawn Код:
new kName,dName;
GetPlayerName(killerid,kName,MAX_PLAYER_NAME);
GetPlayerName(playerid,dName,MAX_PLAYER_NAME);
new string[128];
format(string,sizeof(string),"%s has killed %s",kName,dName);
GameTextForAll(string,2000,4);