SA-MP Forums Archive
LAdmin help - 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: LAdmin help (/showthread.php?tid=189002)



LAdmin help - grand.Theft.Otto - 09.11.2010

Hey, LAdmin script has this /akill command that I use frequently to /a(dmin) kill people, I want the death list to show up as a detonator for the person getting killed, so it would look like this:



But instead of it looking like that, it shows up like this:



The above pic is what results when I do /akill

it goes like this on the death list :

playername [reason] killername
playername [reason]

the 2nd kill is a return kill from my separate game mode, so now in total, one death from my GM is showing, and 1 from my LAdmin script = 2, but I want a separate death message for /akill so it doesn't combine with my GM like the 2nd pic


I use
Код:
SendDeathMessage(playerid,killerid,40); // (40 = detonator)
All I want is the death list to show: playername [reason] NOT:

playername [reason] killername
playername [reason]


Any idea what I need to add or what I'm doing wrong?

Thanks


Re: LAdmin help - The_Moddler - 09.11.2010

pawn Код:
SendDeathMessage(playerid,killerid,40);
return 1;
I guess..