PlusEMU - Habboon Edit - PRODUCTION-201601012205-226667486

Page 13 of 17 FirstFirst ... 3567891011121314151617 LastLast
Results 181 to 195 of 246
  1. #181
    En Français? Bjork is offline
    MemberRank
    Apr 2007 Join Date
    854Posts

    Re: PlusEMU - Habboon Edit - PRODUCTION-201601012205-226667486

    CMS Related ?

  2. #182
    Make a wish .::Arjan::. is offline
    MemberRank
    Jan 2012 Join Date
    the NetherlandsLocation
    504Posts

    Re: PlusEMU - Habboon Edit - PRODUCTION-201601012205-226667486

    Fix for stacktool? You cant place them on every furni.

  3. #183
    Novice hpeter is offline
    MemberRank
    Mar 2016 Join Date
    2Posts

    Re: PlusEMU - Habboon Edit - PRODUCTION-201601012205-226667486

    hello can anyone help me with this? i have the swf and the plusemu.
    how can i add the cms and which files i have to change to get it working?
    i changed the config.ini and the external_variables etc. but it does not work.
    so can please anyone tell me like in tutorials how to set up a retro with the swf and the plusemu?

    sorry for my bad english and thanks in advance

  4. #184
    Proficient Member MoBaTeY is offline
    MemberRank
    Jul 2008 Join Date
    169Posts

    Re: PlusEMU - Habboon Edit - PRODUCTION-201601012205-226667486

    I find it odd that every time you make a database query, you connect to the database. Wouldn't this cause huge latency issues since every query will need to open a connection to the database? I don't also see where you ever disconnect from the database. Wouldn't you essentially flood the database by never closing the connections? Why isn't there a database manager which instantiates one connection to the database? I see this in every emulator out there. I remember a time at work when somebody did the exact same thing and I ended up fixing it by just instantiating it just once. The queries ended up being 300% faster at the end.

    Last edited by MoBaTeY; 27-03-16 at 05:36 AM.

  5. #185
    j’aime ma famille dominic is offline
    MemberRank
    Aug 2012 Join Date
    ~/Location
    611Posts

    Re: PlusEMU - Habboon Edit - PRODUCTION-201601012205-226667486

    Quote Originally Posted by MoBaTeY View Post
    I find it odd that every time you make a database query, you connect to the database. Wouldn't this cause huge latency issues since every query will need to open a connection to the database? I don't also see where you ever disconnect from the database. Wouldn't you essentially flood the database by never closing the connections? Why isn't there a database manager which instantiates one connection to the database? I see this in every emulator out there. I remember a time at work when somebody did the exact same thing and I ended up fixing it by just instantiating it just once. The queries ended up being 300% faster at the end.

    Code:
            private readonly string _connectionStr;
            private readonly IDatabaseClient _dbConnection;
    
            public DatabaseManager(string ConnectionStr)
            {
                this._connectionStr = ConnectionStr;
                _dbConnection = new DatabaseConnection(this._connectionStr);
                _dbConnection.connect();
            }
    
            public bool IsConnected()
            {
                try
                {
                    MySqlConnection Con = new MySqlConnection(this._connectionStr);
                    Con.Open();
                    MySqlCommand CMD = Con.CreateCommand();
                    CMD.CommandText = "SELECT 1+1";
                    CMD.ExecuteNonQuery();
    
                    CMD.Dispose();
                    Con.Close();
                }
                catch (MySqlException)
                {
                    return false;
                }
    
                return true;
            }
    
            public IQueryAdapter GetQueryReactor()
            {
                try
                {
                    return _dbConnection.GetQueryReactor();
                }
                catch (Exception e)
                {
                    Logging.LogException(e.ToString());
                    return null;
                }
            }

  6. #186
    Alpha Member Danny is offline
    MemberRank
    Oct 2011 Join Date
    My PCLocation
    2,158Posts

    Re: PlusEMU - Habboon Edit - PRODUCTION-201601012205-226667486

    When are you guys going to realize this was never the emulator that was used on Habboon... This is not even close to being as stable as Habboon hotel this emu has so much bugs.

  7. #187
    j’aime ma famille dominic is offline
    MemberRank
    Aug 2012 Join Date
    ~/Location
    611Posts

    Re: PlusEMU - Habboon Edit - PRODUCTION-201601012205-226667486

    Quote Originally Posted by Danny View Post
    When are you guys going to realize this was never the emulator that was used on Habboon... This is not even close to being as stable as Habboon hotel this emu has so much bugs.
    Can you back these facts up

  8. #188
    Proficient Member Articuz is offline
    MemberRank
    Jan 2016 Join Date
    157Posts

    Re: PlusEMU - Habboon Edit - PRODUCTION-201601012205-226667486

    Quote Originally Posted by Odwaldario View Post
    Anyone having trouble can use the Plus Emulator Installer that I've created.
    It will automatically configure your emulator, database, and install RevCMS for you.

    PlusEMUInstall.rar — RGhost — file sharing
    and still it's warning for trojan ROFL, m8 i got a feeling you just wanna fck some stuff up

  9. #189
    Apprentice elchavodelocho is offline
    MemberRank
    Sep 2014 Join Date
    Manzanillo, MexLocation
    12Posts

    Re: PlusEMU - Habboon Edit - PRODUCTION-201601012205-226667486

    Help ?

    Screenshot by Lightshot
    Screenshot by Lightshot

    - - - Updated - - -

    Sin logs error

  10. #190
    Proficient Member Articuz is offline
    MemberRank
    Jan 2016 Join Date
    157Posts

    Re: PlusEMU - Habboon Edit - PRODUCTION-201601012205-226667486

    Quote Originally Posted by elchavodelocho View Post
    Help ?

    Screenshot by Lightshot
    Screenshot by Lightshot

    - - - Updated - - -

    Sin logs error
    Help thread is here: http://forum.ragezone.com/f333/offic...-help-1090581/

  11. #191
    Apprentice elchavodelocho is offline
    MemberRank
    Sep 2014 Join Date
    Manzanillo, MexLocation
    12Posts

    Re: PlusEMU - Habboon Edit - PRODUCTION-201601012205-226667486

    Quote Originally Posted by Articuz View Post
    and still it's warning for trojan ROFL, m8 i got a feeling you just wanna fck some stuff up
    Hi
    Thanks

    Screenshot by Lightshot
    Badge fix?

  12. #192
    Account Upgraded | Title Enabled! Sledmore is offline
    MemberRank
    Jun 2009 Join Date
    1,133Posts

    Re: PlusEMU - Habboon Edit - PRODUCTION-201601012205-226667486

    Quote Originally Posted by Danny View Post
    When are you guys going to realize this was never the emulator that was used on Habboon... This is not even close to being as stable as Habboon hotel this emu has so much bugs.
    At the time of this release Habboon was on this exact build, obviously since then Habboon has improved, but not on a giant scale.

  13. #193
    Member Juicex3 is offline
    MemberRank
    Apr 2014 Join Date
    81Posts

    Re: PlusEMU - Habboon Edit - PRODUCTION-201601012205-226667486

    Quote Originally Posted by Sledmore View Post
    At the time of this release Habboon was on this exact build, obviously since then Habboon has improved, but not on a giant scale.
    Can you upload the Emulator from a another Hoster?

    I dont trust Johno.

  14. #194
    Apprentice haqshot is offline
    MemberRank
    Feb 2016 Join Date
    16Posts

    Re: PlusEMU - Habboon Edit - PRODUCTION-201601012205-226667486

    You act like he took a shit on it ffs

  15. #195
    Member Juicex3 is offline
    MemberRank
    Apr 2014 Join Date
    81Posts

    Re: PlusEMU - Habboon Edit - PRODUCTION-201601012205-226667486

    Quote Originally Posted by haqshot View Post
    You act like he took a shit on it ffs
    dude he has a own retro.
    Can you tell me why he dont use it ?



Advertisement