[Fab]KillMe Command
Sometimes players grow tired of life and want to suicide..but you can't find the perfect lava pool to do so...
introducing another shitty command the KillME Command
now players can suicide as they please
I am so bored right now...
introducing another shitty command the KillME Command
now players can suicide as they please
Code:
internal class KillME : Command
{
public KillME()
: base("killme")
{
}
protected override bool Process(Player player, RealmTime time, string[] args)
{
if (args.Length > 0)
{
player.SendHelp("Usage: /killme");
return false;
}
player.HP = 0;
player.Death(player.Name);
return true;
}
}
