SA-MP Forums Archive
Kill-List - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+---- Forum: Help Archive (https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: Kill-List (/showthread.php?tid=82227)



Kill-List - Teyhouse - 16.06.2009

Good Evening, (it is evening in germany )
i am looking for a kind of Kill-List (Filter) Script. What i want what it do:
The Kill-List have to display on the Right-Side of you Screen witch Player' died and why (for example: playerx died with a weapon from playery (icon)). I saw it on other server's bat i didn't find any script here in the Board.
So, if you know a solve or a script you would say it please

Picture-Example:


Greetz,
Teyhouse


Re: Kill-List - HuRRiCaNe - 17.06.2009

well there is not a Fs is very simple you can check on
http://wiki.sa-mp.com
or under
pawn Код:
public OnPlayerDeath(playerid, killerid, reason)
    {if(killerid == INVALID_PLAYER_ID)
    {
    SendDeathMessage(INVALID_PLAYER_ID,playerid,reason);
    }
     else
    {
    SendDeathMessage(killerid,playerid,reason);
}
return 1;
}



Re: Kill-List - yom - 17.06.2009

pawn Код:
public OnPlayerDeath(playerid, killerid, reason)
{
  SendDeathMessage(killerid, playerid, reason);
  return 1;
}
Same result.


Re: Kill-List - Teyhouse - 17.06.2009

It is the same like in my Screenshot on top?
I have put it befor the last return 1; in OnPlayerDeath(...) bat if i die i didn't see any Message or is it only if another Player kills me? I had kill myself with a Modotoff Coktail Bat on the Other Server you see all: Playerkill, Selfkill etc.


Re: Kill-List - HuRRiCaNe - 17.06.2009

which u used Orbґs or mineґs?


Re: Kill-List - Teyhouse - 17.06.2009

Orb's?


Re: Kill-List - HuRRiCaNe - 17.06.2009

i think u shoud use mine if u get that problem.


Re: Kill-List - Correlli - 17.06.2009

Quote:
Originally Posted by BiG_Sm0k3
i think u shoud use mine if u get that problem.
Like 0rb said, it's the same thing.


Re: Kill-List - Teyhouse - 17.06.2009

mhh ko it looks good, bat if i kill my self i woudn't see any Message


Re: Kill-List - Grim_ - 17.06.2009

That's interesting, it should show the death reason of you dieing from fire or the skull.