death list
#1

Is there anyway to disable it, and only make it viewable for admins.

I only wants admin to see it and that players can't enable it not even with F9.

thanks.
Reply
#2

Iv never seen it done where only admins can see it before but if you wana get rid of em remove this from your script.
pawn Код:
SendDeathMessage(killerid, playerid, reason);
Reply
#3

so? can anyone help me?
Reply
#4

Impossible, you could make an alternative that everytime someons dies it displays a SendClientMessage to all the admins?
Reply
#5

would this work?

pawn Код:
stock SendDeathMessageToAdmins(killerid,playerid,reason)
{
  for(new i = 0; i<GetMaxPlayers(); i++)

    if(IsPlayerConnected(i))
    {
        if (IsPlayerAdmin(i))
        {
            SendDeathMessage(killerid,playerid,reason);
        }
    }
}
Reply
#6

i will try it, if it works thanks alot
Reply
#7

No, it wouldnt, that would send the message as often as the number of admins online is
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)