< Command >: Freeze and Unfreeze
< What it Does? > Freeze a Habbo
< Version > Uber v55+
Printable View
< Command >: Freeze and Unfreeze
< What it Does? > Freeze a Habbo
< Version > Uber v55+
I Dont think that was possible because there was some bug in uber
<Command> :bot (botname) (bot desc) (bot saying)
<What is does> Adds a bot into the room infront of the user
<Version> v26 RP
<Command>:removebots
<What is does> Removes all bots from room
<Version> v26 RP
Command : :drop
What it does: Drops 35 random furni in random empty spaces in the users room
and you can only use it 1 every 1 min,
Vers: V26
Command: :MassBuy (rank 3)
What it does: you type :mass buy 10 (max is 35) then when you go in to cata and buy a furni you get 10 of that item or what ever you wanted and it charges for that amount.
Also if you can Make a system where a user has a special page only for that user (im hoping to build a vip system like flex i.e cct upload ect. ) and when i release all my code i will Credit you.
Command:Out of the way
Desc: Move other characters (hotel owners only)
Version: v26
command> :giveroom <user>
what it does> gives a user the room you're currently in (switches room owners)
version> v36
TDBP:
NON-TDBP:Code:#region :giveroom <name>
case "giveroom":
{
string owner;
using (DatabaseClient dbClient = Eucalypt.dbManager.GetClient())
{
owner = dbClient.getString("SELECT owner FROM rooms WHERE id = '" + _roomID + "'");
}
if (owner != _Username)
{
sendData("BK" + "You are not the room owner.");
}
else
{
virtualUser Target = userManager.getUser(args[1]);
Room.sendSaying(roomUser, "*Gives room to " + Target._Username + "*");
using (DatabaseClient dbClient = Eucalypt.dbManager.GetClient())
{
dbClient.runQuery("UPDATE rooms SET owner = '" + Target + "' WHERE id = '" + _roomID + "'");
}
}
break;
}
#endregion
:)Code:#region :giveroom <name>
case "giveroom":
{
string owner;
owner = DB.runRead("SELECT owner FROM rooms WHERE id = '" + _roomID + "'");
if (owner != _Username)
{
sendData("BK" + "You are not the room owner.");
}
else
{
virtualUser Target = userManager.getUser(args[1]);
Room.sendSaying(roomUser, "*Gives room to " + Target._Username + "*");
DB.runQuery("UPDATE rooms SET owner = '" + Target + "' WHERE id = '" + _roomID + "'");
}
break;
}
#endregion
Command: :dark
Function: Makes the room walls black, like with the moodlight.
Version: TDbP
Command: :chat <on/off>
Function: Makes the chat in the entire hotel muted.
Version: TDbP
Command: :invite <message>
Function: gives all users an message that says: an staff invited you! <Yourmessage> do you want to come? <YesNobuttons>.
If you click on yes the user follows you.
Version: V26
Posted via Mobile Device
aha i have another one:)!
<Command> :teleport <username>
<What is does> teleports any user online to where you are (ADMIN only command)
<Version> v36 not rp O_O
Edit:
Here's another. im just coming up with a bunch off the top of my head ahaa im bored.
<command> :staffinfo <staff username>
<what it does> shows information of a staff member (join date, position, etc.)
<Version> v36 not rp O_o
if you make the template for this, ill fill it in because im gonna need a bunch lol.
There ya go.Code:#region :teleport <user>
case "teleport":
{
if (_Rank != 7)
{
return false;
}
else if (_Rank == 7)
{
virtualUser User = userManager.getUser(args[1]);
User.sendData("D^" + "H" + Encoding.encodeVL64(_roomID));
User.sendData("BK" + "An administrator has teleported you to them!");
Room.sendSaying(roomUser, "*Teleports " + User._Username + " to this room.*");
}
break;
}
#region :staffinfo <user>
case "staffinfo": // Generates a list of information about a certain virtual user
{
if (_Rank != 7)
{
return false;
}
else
{
virtualUser User = userManager.getUser(args[1]);
if (User._Rank != 6 || User._Rank != 7)
{
return false;
}
else
{
sendData("BK" + userManager.generateUserInfo(userManager.getUserID(args[1]), _Rank));
}
}
break;
}
#endregion
---------- Post added at 04:56 AM ---------- Previous post was at 04:55 AM ----------
Do you mean like the yes and no on guide alert?