28.12.2011, 11:20
If I'm right, thats done with the SendDeathMessage command, in pawn.
If you don't use that, the death window won't show up. if you do, then it will.
edit: look what I found..
https://sampwiki.blast.hk/wiki/SendDeathMessage
This snippet of code will enable the death window
If you don't use that, the death window won't show up. if you do, then it will.
edit: look what I found..
https://sampwiki.blast.hk/wiki/SendDeathMessage
pawn Код:
public OnPlayerDeath(playerid, killerid, reason)
{
SendDeathMessage(killerid, playerid, reason);
return 1;
}