help!
#2

I got curious, ran some tests and this is what I made:

This will hide kill/death list for all players as long as your server is not full.
Add this where you want it to get hidden.
pawn Код:
for(new i; i < MAX_PLAYERS; i++)
{
  if(!IsPlayerConnected(i))
  {
    for(new j; j < 5; j++)
    {
      SendDeathMessage(i, i, 1);
    }
    break;
  }
}
Edit: replace
Код:
for(new i; i < MAX_PLAYERS; i++)
to
Код:
for(new i = MAX_PLAYERS-1; i >= 0; i--)
Reply


Messages In This Thread
help! - by jaksimaksi - 21.12.2009, 11:46
Re: help! - by M4S7ERMIND - 21.12.2009, 14:03
Re: help! - by LarzI - 21.12.2009, 14:16
Re: help! - by M4S7ERMIND - 21.12.2009, 14:18
Re: help! - by LarzI - 21.12.2009, 14:20
Re: help! - by M4S7ERMIND - 21.12.2009, 14:26
Re: help! - by LarzI - 21.12.2009, 14:41

Forum Jump:


Users browsing this thread: 1 Guest(s)