(Service) Habbo Commands (Service)

Page 4 of 7 FirstFirst 1234567 LastLast
Results 46 to 60 of 92
  1. #46
    You can call me Monty :D GuikBretas is offline
    MemberRank
    Apr 2009 Join Date
    NorwayLocation
    332Posts

    Re: (Service) Habbo Commands (Service)

    < Command >: Freeze and Unfreeze
    < What it Does? > Freeze a Habbo
    < Version > Uber v55+

  2. #47
    Alpha Member Zak© is offline
    MemberRank
    Oct 2007 Join Date
    2,693Posts

    Re: (Service) Habbo Commands (Service)

    I Dont think that was possible because there was some bug in uber

  3. #48
    Apprentice smartguy88 is offline
    MemberRank
    May 2008 Join Date
    13Posts

    Re: (Service) Habbo Commands (Service)

    <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

  4. #49
    Account Upgraded | Title Enabled! vistadosentwork is offline
    MemberRank
    Mar 2008 Join Date
    http://habhotelLocation
    374Posts

    Re: (Service) Habbo Commands (Service)

    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.
    Last edited by vistadosentwork; 05-09-10 at 01:54 AM.

  5. #50
    Account Upgraded | Title Enabled! No0b is offline
    MemberRank
    Jul 2010 Join Date
    Michigan, USLocation
    1,426Posts

    Re: (Service) Habbo Commands (Service)

    Command:Out of the way

    Desc: Move other characters (hotel owners only)

    Version: v26

  6. #51
    Proficient Member mango2735 is offline
    MemberRank
    Jun 2010 Join Date
    176Posts

    Re: (Service) Habbo Commands (Service)

    Quote Originally Posted by No0b View Post
    Command:Out of the way

    Desc: Move other characters (hotel owners only)
    Version: v26
    why??? basicly use push or teleport??..

  7. #52
    Member Hailey is offline
    MemberRank
    Jul 2010 Join Date
    CaliforniaLocation
    56Posts

    Re: (Service) Habbo Commands (Service)

    command> :giveroom <user>
    what it does> gives a user the room you're currently in (switches room owners)
    version> v36

  8. #53
    Proficient Member swimoTheBig is offline
    MemberRank
    Aug 2008 Join Date
    Essex, UKLocation
    194Posts

    Re: (Service) Habbo Commands (Service)

    Quote Originally Posted by Hailey View Post
    command> :giveroom <user>
    what it does> gives a user the room you're currently in (switches room owners)
    version> v36
    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
    NON-TDBP:
    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
    :)

  9. #54
    Member Hailey is offline
    MemberRank
    Jul 2010 Join Date
    CaliforniaLocation
    56Posts

    Re: (Service) Habbo Commands (Service)

    Quote Originally Posted by swimoTheBig View Post
    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
    NON-TDBP:
    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
    :)
    thanks! :)

  10. #55
    Proficient Member swimoTheBig is offline
    MemberRank
    Aug 2008 Join Date
    Essex, UKLocation
    194Posts

    Re: (Service) Habbo Commands (Service)

    Quote Originally Posted by Hailey View Post
    thanks! :)
    No Problem :).

  11. #56
    Account Upgraded | Title Enabled! Milw0rm is offline
    MemberRank
    Jul 2007 Join Date
    660Posts

    Re: (Service) Habbo Commands (Service)

    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

  12. #57
    Horror! Rajito is offline
    MemberRank
    Aug 2010 Join Date
    The NetherlandsLocation
    1,046Posts

    Re: (Service) Habbo Commands (Service)

    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

  13. #58
    Member Hailey is offline
    MemberRank
    Jul 2010 Join Date
    CaliforniaLocation
    56Posts

    Re: (Service) Habbo Commands (Service)

    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.
    Last edited by Hailey; 06-09-10 at 01:10 AM.

  14. #59
    Proficient Member swimoTheBig is offline
    MemberRank
    Aug 2008 Join Date
    Essex, UKLocation
    194Posts

    Re: (Service) Habbo Commands (Service)

    Quote Originally Posted by Hailey View Post
    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.
    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
    There ya go.

    ---------- Post added at 04:56 AM ---------- Previous post was at 04:55 AM ----------

    Quote Originally Posted by rajito View Post
    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
    Do you mean like the yes and no on guide alert?
    Last edited by swimoTheBig; 06-09-10 at 05:48 PM.

  15. #60
    Developer Eronisch is offline
    MemberRank
    Jul 2009 Join Date
    The NetherlandsLocation
    1,328Posts

    Re: (Service) Habbo Commands (Service)

    Quote Originally Posted by rajito View Post
    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
    Oh, nice suggestion. I'll use it if somebody codes it.



Page 4 of 7 FirstFirst 1234567 LastLast

Advertisement