Sup guys, I'm releasing this simple and funny command:
All this command does is kill the victim and then disconnect him causing him to log back on with 0 hp. It also announces it to everyone on the server.
Hope this helps you piss off the faggotry players on your server. If it doesn't...Oh well, just go ban them.
Ex]
/rape [character name] - The character will DIE and DISCONNECT.
Code:
if (Splitter[0] == "/rape")
{
foreach (DictionaryEntry DE in World.AllChars)
{
Character Char = (Character)DE.Value;
if (Char.Name == Splitter[1])
{
World.SendMsgToAll(Splitter[1] + " has been ass-fucked for breaking a rule.", "SYSTEM", 2011);
World.SendMsgToAll("Note: Please follow all the rules or you will end up like " + Splitter[1] + "!", "SYSTEM", 2005);
Char.CurHP = 0;
Char.Alive = false;
Char.MyClient.SendPacket(General.MyPackets.Status1(Char.UID, 0));
Char.MyClient.SendPacket(General.MyPackets.Status3(Char.UID));
Char.MyClient.SendPacket(General.MyPackets.Vital(Char.UID, 26, Char.GetStat()));
Char.MyClient.SendPacket(General.MyPackets.CharacterInfo(Char));
Char.MyClient.SendPacket(General.MyPackets.Vital(Char.UID, 26, Char.GetStat()));
Char.Stamina = 0;
Char.MyClient.SendPacket(General.MyPackets.Vital(Char.UID, 9, Char.Stamina));
Char.Die();
World.UpdateSpawn(Char);
Char.MyClient.Drop();
}
else
{
SendPacket(General.MyPackets.SendMsg(MessageId, "SYSTEM", MyChar.Name, "Sorry the Character: " + Splitter[1] + " is offline...Please try again later", 2000));
}
}
}
Hope this helps you piss off the faggotry players on your server. If it doesn't...Oh well, just go ban them.
Ex]
/rape [character name] - The character will DIE and DISCONNECT.