08.06.2009, 07:24
Quote:
Originally Posted by [TDR
Strike ]
add on ur top of ur script Код:
new pName; new kName; |
Don't do that, you don't understand what you're doing. The idea of creating these strings is to store names, as shown in the first post.
To fix it, do this:
pawn Код:
GetPlayerName(killerid, kName, sizeof(kName));
GetPlayerName(playerid, pName, sizeof(pName));
And by the way, your format() line is valid, so don't worry about that. Though it's not going to use all 256 characters you allow it to.
Hope this helps,
~Cueball~