PlayerId
#1

Код:
format(string,sizeof string,"{C0C0C0}[ KILL-LIST ] Hrбc %s (ID:%i) zabil %s (ID:%i).",killername, playerid, playername, playerid);
Im not sure how to do it, I want the message to looks like this Plazer xxx (ID:0) killed player (ID:1)

But the player id in message its same
Reply
#2

pawn Код:
format(string,sizeof string,"{C0C0C0}[ KILL-LIST ] Hrбc %s (ID:%i) zabil %s (ID:%i).",killername, killerid, playername, playerid);
Reply
#3

Quote:
Originally Posted by lsreskjn
Посмотреть сообщение
Код:
format(string,sizeof string,"{C0C0C0}[ KILL-LIST ] Hrбc %s (ID:%i) zabil %s (ID:%i).",killername, playerid, playername, playerid);
Im not sure how to do it, I want the message to looks like this Plazer xxx (ID:0) killed player (ID:1)

But the player id in message its same
You need to get the id of the killer and save it somewhere, such as killerid or just id.
Reply
#4

pawn Код:
public OnPlayerDeath(playerid, killerid, reason)
{

    new string[128], kname[MAX_PLAYER_NAME+1], pname[MAX_PLAYER_NAME+1];
    GetPlayerName(killerid, kname, sizeof(kname));
    GetPlayerName(playerid, pname, sizeof(pname));
    format(string, sizeof(string), "> Player %s (ID:%d) has killed Player %s (ID:%d)", kname, killerid, pname, playerid);
    // Do whatever here to send it to whoever you want

    return 1;
}
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)