Ok, well this is a simple system to count the amount of players that have died on your server. This is good for PK servers I guess, but it's also on RS.
So first in player.java we shall make a int;
Code:
public int DeathCount = 0;
We make it "public" so it counts everyone and not just one player, otherwise it would just be an int
Next we will add this code in your death method (found in player.java search for your death message)
This will make it so that when each player dies it adds to the public int so it will count for everyone and not just one player.
Next we need to echo the variable, in runescape this sign is shown on the signpost outside the lumbridge prayer centre thing, but you can make it a command or what ever.
Code:
case SIGNPOST;
p.frames.sendMessage(p, "So far today " +p.DeathCount+ "player(s) have died on UR SERVER");
break;
Yeh, so have fun kiddies.