Mercury Emulator V2.3 [Plus] [New RSA] [Love Locks] [Group Forums] [ETC]

Page 9 of 36 FirstFirst 123456789101112131415161719 ... LastLast
Results 121 to 135 of 538
  1. #121
    Account Upgraded | Title Enabled! KyleeIsProzZ is offline
    MemberRank
    Oct 2012 Join Date
    C:Location
    548Posts

    Re: Mercury Emulator V2.3 [Plus] [New RSA] [Love Locks] [Group Forums] [ETC]

    Is there any English catalog items, pages, for 2.3 of Mercury?
    anyone have them? :)

  2. #122
    Enthusiast Skulvy is offline
    MemberRank
    Nov 2008 Join Date
    Pussy landLocation
    32Posts

    Re: Mercury Emulator V2.3 [Plus] [New RSA] [Love Locks] [Group Forums] [ETC]

    Can we add on this the Faceless command ? and the transfrom ?

  3. #123
    Member Terry Lgm is offline
    MemberRank
    Nov 2013 Join Date
    91Posts

    Re: Mercury Emulator V2.3 [Plus] [New RSA] [Love Locks] [Group Forums] [ETC]

    Quote Originally Posted by Skulvy View Post
    Can we add on this the Faceless command ? and the transfrom ?
    Yes the command faceless its funny ^^

  4. #124
    Enthusiast AreFlame is offline
    MemberRank
    May 2014 Join Date
    26Posts

    Re: Mercury Emulator V2.3 [Plus] [New RSA] [Love Locks] [Group Forums] [ETC]

    In my opinion i don't think this is as stable as people thinks. I have a really good internet, i did a speed test. And i tested tardis hotel just to check if i was correct and i already had trouble connecting to the client. It was stuck at 87% sometimes when it was 20+ online lol. And when i finally enter the client i can feel the lag. But this is just my opinion about it and i am not sure if it is totally true, but that is my opinion and i will stick to it!

  5. #125
    Valued Member Bullies is offline
    MemberRank
    Aug 2013 Join Date
    114Posts

    Re: Mercury Emulator V2.3 [Plus] [New RSA] [Love Locks] [Group Forums] [ETC]

    Quote Originally Posted by KyleeIsProzZ View Post
    Is there any English catalog items, pages, for 2.3 of Mercury?
    anyone have them? :)
    Is it that hard to put some time in your hotel? Pff..

  6. #126
    Hakuna Matata Matata is offline
    MemberRank
    Sep 2012 Join Date
    DenmarkLocation
    807Posts

    Re: Mercury Emulator V2.3 [Plus] [New RSA] [Love Locks] [Group Forums] [ETC]

    Quote Originally Posted by PythoneX12 View Post
    Problem: -pic-

    Not to sure why I encounter this error but I dont believe I should..
    Create a thread in the help section.

  7. #127
    Apprentice ohSparklez is offline
    MemberRank
    Sep 2014 Join Date
    14Posts

    Re: Mercury Emulator V2.3 [Plus] [New RSA] [Love Locks] [Group Forums] [ETC]

    Is "Change Name" coded?

  8. #128
    Member Leans is offline
    MemberRank
    Jul 2014 Join Date
    94Posts

    Re: Mercury Emulator V2.3 [Plus] [New RSA] [Love Locks] [Group Forums] [ETC]

    Quote Originally Posted by ohSparklez View Post
    Is "Change Name" coded?
    Yes, you could enable it in extra_settings

  9. #129
    Member selimrecep is offline
    MemberRank
    Jun 2014 Join Date
    72Posts

    Re: Mercury Emulator V2.3 [Plus] [New RSA] [Love Locks] [Group Forums] [ETC]

    How to be revived ?

  10. #130
    Account Upgraded | Title Enabled! UartigZone is offline
    MemberRank
    Dec 2013 Join Date
    LoserlandLocation
    441Posts

    Re: Mercury Emulator V2.3 [Plus] [New RSA] [Love Locks] [Group Forums] [ETC]

    Quote Originally Posted by Squashing View Post
    This emu has better and working Wired-coded if you compare it with Plus >.<
    Yeah but alot of the new wired does not work? ...

  11. #131
    Proficient Member MrPudding is offline
    MemberRank
    Jul 2013 Join Date
    GermanyLocation
    174Posts

    Re: Mercury Emulator V2.3 [Plus] [New RSA] [Love Locks] [Group Forums] [ETC]

    Quote Originally Posted by selimrecep View Post
    How to be revived ?
    You can't. Mwahahaha^_^

  12. #132
    son, i am disappointed Squashing is offline
    MemberRank
    Apr 2011 Join Date
    CaliforniaLocation
    683Posts

    Re: Mercury Emulator V2.3 [Plus] [New RSA] [Love Locks] [Group Forums] [ETC]

    PHP Code:
    #region Faceless                case "faceless":
                        
    {
                            if (
    Session.GetHabbo().HasCmd("faceless"))
                            {
                                
    string[] figureParts;
                                
    string[] headParts;


                                
    figureParts Session.GetHabbo().Look.Split('.');
                                foreach (
    string Part in figureParts)
                                {
                                    if (
    Part.StartsWith("hd"))
                                    {
                                        
    headParts Part.Split('-');


                                        if (!
    headParts[1].Equals("99999"))
                                            
    headParts[1] = "99999";
                                        else
                                            break;


                                        
    string NewHead "hd-" headParts[1] + "-" headParts[2];


                                        
    Session.GetHabbo().Look Session.GetHabbo().Look.Replace(PartNewHead);
                                        break;
                                    }
                                }


                                
    using (IQueryAdapter dbClient MercuryEnvironment.GetDatabaseManager().getQueryreactor())
                                {
                                    
    dbClient.setQuery("UPDATE users SET look =   [MENTION=1333417016]Look[/MENTION] WHERE username =   [MENTION=411303]username[/MENTION]");
                                    
    dbClient.addParameter("look"Session.GetHabbo().Look);
                                    
    dbClient.addParameter("username"Session.GetHabbo().Username);
                                    
    dbClient.runQuery();
                                }


                                
    Room Room Session.GetHabbo().CurrentRoom;


                                if (
    Room == null)
                                    return 
    true;


                                
    RoomUser User Room.GetRoomUserManager().GetRoomUserByHabbo(Session.GetHabbo().Id);


                                if (
    User == null)
                                    return 
    true;


                                
    #region Messages
                                
    Session.GetMessageHandler().GetResponse().Init(Outgoing.UpdateUserInformation);
                                
    Session.GetMessageHandler().GetResponse().AppendInt32(-1);
                                
    Session.GetMessageHandler().GetResponse().AppendString(Session.GetHabbo().Look);
                                
    Session.GetMessageHandler().GetResponse().AppendString(Session.GetHabbo().Gender.ToLower());
                                
    Session.GetMessageHandler().GetResponse().AppendString(Session.GetHabbo().Motto);
                                
    Session.GetMessageHandler().GetResponse().AppendInt32(Session.GetHabbo().AchievementPoints);
                                
    Session.GetMessageHandler().SendResponse();


                                
    ServerMessage RoomUpdate = new ServerMessage(Outgoing.UpdateUserInformation);
                                
    RoomUpdate.AppendInt32(User.VirtualId);
                                
    RoomUpdate.AppendString(Session.GetHabbo().Look);
                                
    RoomUpdate.AppendString(Session.GetHabbo().Gender.ToLower());
                                
    RoomUpdate.AppendString(Session.GetHabbo().Motto);
                                
    RoomUpdate.AppendInt32(Session.GetHabbo().AchievementPoints);
                                
    Room.SendMessage(RoomUpdate);
                                
    #endregion
                            
    }
                            return 
    true;
                        }
                    
    #endregion 

    INSERT INTO `fuse_cmds` (`command`, `rank`, `params`, `description`) VALUES ('faceless', '1', NULL, 'Makes your character faceless');
    Last edited by Squashing; 16-09-14 at 07:18 PM.

  13. #133
    Account Upgraded | Title Enabled! AskethZ is offline
    MemberRank
    Jul 2012 Join Date
    232Posts

    Re: Mercury Emulator V2.3 [Plus] [New RSA] [Love Locks] [Group Forums] [ETC]

    Quote Originally Posted by Squashing View Post
    PHP Code:
    #region Faceless                case "faceless":
                        
    {
                            if (
    Session.GetHabbo().HasCmd("faceless"))
                            {
                                
    string[] figureParts;
                                
    string[] headParts;


                                
    figureParts Session.GetHabbo().Look.Split('.');
                                foreach (
    string Part in figureParts)
                                {
                                    if (
    Part.StartsWith("hd"))
                                    {
                                        
    headParts Part.Split('-');


                                        if (!
    headParts[1].Equals("99999"))
                                            
    headParts[1] = "99999";
                                        else
                                            break;


                                        
    string NewHead "hd-" headParts[1] + "-" headParts[2];


                                        
    Session.GetHabbo().Look Session.GetHabbo().Look.Replace(PartNewHead);
                                        break;
                                    }
                                }


                                
    using (IQueryAdapter dbClient SilverwaveEnvironment.GetDatabaseManager().getQueryreactor())
                                {
                                    
    dbClient.setQuery("UPDATE users SET look =  [MENTION=1333417016]Look[/MENTION] WHERE username =  [MENTION=411303]username[/MENTION]");
                                    
    dbClient.addParameter("look"Session.GetHabbo().Look);
                                    
    dbClient.addParameter("username"Session.GetHabbo().Username);
                                    
    dbClient.runQuery();
                                }


                                
    Room Room Session.GetHabbo().CurrentRoom;


                                if (
    Room == null)
                                    return 
    true;


                                
    RoomUser User Room.GetRoomUserManager().GetRoomUserByHabbo(Session.GetHabbo().Id);


                                if (
    User == null)
                                    return 
    true;


                                
    #region Messages
                                
    Session.GetMessageHandler().GetResponse().Init(Outgoing.UpdateUserInformation);
                                
    Session.GetMessageHandler().GetResponse().AppendInt32(-1);
                                
    Session.GetMessageHandler().GetResponse().AppendString(Session.GetHabbo().Look);
                                
    Session.GetMessageHandler().GetResponse().AppendString(Session.GetHabbo().Gender.ToLower());
                                
    Session.GetMessageHandler().GetResponse().AppendString(Session.GetHabbo().Motto);
                                
    Session.GetMessageHandler().GetResponse().AppendInt32(Session.GetHabbo().AchievementPoints);
                                
    Session.GetMessageHandler().SendResponse();


                                
    ServerMessage RoomUpdate = new ServerMessage(Outgoing.UpdateUserInformation);
                                
    RoomUpdate.AppendInt32(User.VirtualId);
                                
    RoomUpdate.AppendString(Session.GetHabbo().Look);
                                
    RoomUpdate.AppendString(Session.GetHabbo().Gender.ToLower());
                                
    RoomUpdate.AppendString(Session.GetHabbo().Motto);
                                
    RoomUpdate.AppendInt32(Session.GetHabbo().AchievementPoints);
                                
    Room.SendMessage(RoomUpdate);
                                
    #endregion
                            
    }
                            return 
    true;
                        }
                    
    #endregion 
    Please make something compatible with an emulator before you "release" it for it. This is made for Silverwave. It won't work because for instance it says
    Code:
    SilverwaveEnvironment.GetDatabaseManager().getQueryreactor())
    while it should be like
    Code:
    MercuryEnvironment.GetDatabaseManager().getQueryreactor())
    small things like that. Also
    Code:
    ServerMessage RoomUpdate = new ServerMessage(Outgoing.UpdateUserInformation);
    appears not to be valid for Mercury as it doesn't understand Outgoing.UpdateUserInformation.

  14. #134
    Account Upgraded | Title Enabled! AskethZ is offline
    MemberRank
    Jul 2012 Join Date
    232Posts

    Re: Mercury Emulator V2.3 [Plus] [New RSA] [Love Locks] [Group Forums] [ETC]

    faceless command fixed for mercury:
    Code:
                        case "faceless":
                        case "geengezicht":
                        case "gezichtloos":
                            {
                                if (Session.GetHabbo().GotCommand("faceless")) //wrong 1
                                {
                                    string[] figureParts;
                                    string[] headParts;
    
    
                                    figureParts = Session.GetHabbo().Look.Split('.');
                                    foreach (string Part in figureParts)
                                    {
                                        if (Part.StartsWith("hd"))
                                        {
                                            headParts = Part.Split('-');
    
    
                                            if (!headParts[1].Equals("99999"))
                                                headParts[1] = "99999";
                                            else
                                                break;
    
    
                                            string NewHead = "hd-" + headParts[1] + "-" + headParts[2];
    
    
                                            Session.GetHabbo().Look = Session.GetHabbo().Look.Replace(Part, NewHead);
                                            break;
                                        }
                                    }
    
    
                                    using (IQueryAdapter dbClient = MercuryEnvironment.GetDatabaseManager().getQueryreactor()) //wrong 2
                                    {
                                        dbClient.setQuery("UPDATE users SET look =   @Look WHERE username =   @username");
                                        dbClient.addParameter("look", Session.GetHabbo().Look);
                                        dbClient.addParameter("username", Session.GetHabbo().Username);
                                        dbClient.runQuery();
                                    }
    
    
                                    Room Room = Session.GetHabbo().CurrentRoom;
    
    
                                    if (Room == null)
                                        return true;
    
    
                                    RoomUser User = Room.GetRoomUserManager().GetRoomUserByHabbo(Session.GetHabbo().Id);
    
    
                                    if (User == null)
                                        return true;
    
                                    Session.GetMessageHandler().GetResponse().Init(Outgoing.UpdateUserDataMessageComposer); //wrong 3
                                    Session.GetMessageHandler().GetResponse().AppendInt32(-1);
                                    Session.GetMessageHandler().GetResponse().AppendString(Session.GetHabbo().Look);
                                    Session.GetMessageHandler().GetResponse().AppendString(Session.GetHabbo().Gender.ToLower());
                                    Session.GetMessageHandler().GetResponse().AppendString(Session.GetHabbo().Motto);
                                    Session.GetMessageHandler().GetResponse().AppendInt32(Session.GetHabbo().AchievementPoints);
                                    Session.GetMessageHandler().SendResponse();
    
    
                                    ServerMessage RoomUpdate = new ServerMessage(Outgoing.UpdateUserDataMessageComposer); //wrong 4, original code by Squashing, fixed up for Mercury by AskethZ aka Weed
                                    RoomUpdate.AppendInt32(User.VirtualId);
                                    RoomUpdate.AppendString(Session.GetHabbo().Look);
                                    RoomUpdate.AppendString(Session.GetHabbo().Gender.ToLower());
                                    RoomUpdate.AppendString(Session.GetHabbo().Motto);
                                    RoomUpdate.AppendInt32(Session.GetHabbo().AchievementPoints);
                                    Room.SendMessage(RoomUpdate);
    
                                }
                                return true;
                            }

  15. #135
    ignition sequence start Unphased is offline
    MemberRank
    Jul 2012 Join Date
    DeniedLocation
    1,860Posts

    Re: Mercury Emulator V2.3 [Plus] [New RSA] [Love Locks] [Group Forums] [ETC]

    Quote Originally Posted by mokobe39000 View Post
    haha you have nothing else to do? --'

    someone else? i search a cms compatible with mercury emu2.3
    Someone said it works with aXDR CMS or whatever it's called but I'm doubtful anyone still uses it.



Advertisement