So, from now on, I am going to post all my commands here. I jsut made a new RP command.
It's called heartattack.
It's called heartattack.
Code:
#region :heartattack
case "heartattack":
{
using(DatabaseClient dbClient = Eucalypt.dbManager.GetClient())
{
dbClient.runQuery("UPDATE user SET health = health = -'95' WHERE name = '" + _Username + "'");
Room.sendShouting(roomUser, "*Gets a heart attack*");
Room.sendWhisper(roomUser, _Username, "Hurry! Go to the hospital! You have no more time!");
_Mission = "[HELP] HELP ME! YOU NEED TO TAKE ME TO THE HOSPITAL SO I DON'T DIE!";
refreshAppearance( false, true, true);
}
}
break;
#endregion