17.12.2010, 19:58
Learn the freaking rules:
https://sampforum.blast.hk/showthread.php?tid=45235
Did you even bother to read "READ BEFORE POSTING" STICKIED topic?
https://sampforum.blast.hk/showthread.php?tid=45235
Did you even bother to read "READ BEFORE POSTING" STICKIED topic?
pawn Код:
public OnPlayerDeath(playerid, killerid, reason)
{
new string[51], giveplayerid, giveplayer[MAX_PLAYER_NAME], playername[MAX_PLAYER_NAME], killerplayer[MAX_PLAYER_NAME];
GetPlayerPos(playerid, x, y, z);
GetPlayerName(giveplayerid, giveplayer, sizeof(giveplayer));
GetPlayerName(playerid, playername, sizeof(playername));
GetPlayerName(killerid, killerplayer, sizeof(killerplayer));
if(IsPlayerInRangeOfPoint(giveplayerid, 5.0, x, y, z))
{
format(string, sizeof(string),"%s got killed by %s. Witness: %s", playername, killerplayer, giveplayer);
SendClientMessageToAll(COLOR_WHITE, string);
}
return 1;
}