Sorry, only Holograph Emulator commands. :smikey94 said:rasta can u make commands for old sch retros?
Retroa said:I've seen this before but could never find the release, What about a command to become a cat called :cat?
#region :AFK
case "afk":
{
Room.sendShout(roomUser, "*Goes AFK*");
_Mission = "This user is AFK";
refreshAppearance(false, true, true);
}
break;
#endregion
@kieren here is a marriage command:
#region :marry <user>
case "marry": // Selects The User And Enters It Into The Database
{
virtualUser User = userManager.getUser(args[1]);
using (DatabaseClient dbClient = Eucalypt.dbManager.GetClient())
{
dbClient.runQuery("SELECT proposal_accept FROM users WHERE users = '" + User._Username + "'");
dbClient.runQuery("INSERT INTO marriage(id,man,woman) VALUES ('" + userID + "','" + _Username + "','" + User._Username + "')");
}
Room.sendSaying(roomUser, "*" + _Username + " Puts Ring On " + User._Username + "*");
sendData("BK" + "Once The Other User Proposes Say :marry (Username)" + Convert.ToChar(2));
sendData("BK" + "You Have Been Married!" + Convert.ToChar(2));
Room.sendSaying(roomUser, "*" + _Username + " Is Joined In Holy Matromony To " + User._Username + "*");
break;
}
#endregion