SA-MP Forums Archive
How to do that "list" / "log" appear on gamemode? - 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)
+--- Thread: How to do that "list" / "log" appear on gamemode? (/showthread.php?tid=360218)



How to do that "list" / "log" appear on gamemode? - Nunes - 16.07.2012

/imageshack/img708/3733/samp021zao.png

I don't know how to that is called but it is a kind of list / log. I want it to appear on gamemode and idk how to do it.


Re: How to do that "list" / "log" appear on gamemode? - Vince - 16.07.2012

https://sampwiki.blast.hk/wiki/SendDeathMessage


Re: How to do that "list" / "log" appear on gamemode? - LaGrande - 16.07.2012

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