• Unfortunately, we have experienced significant hard drive damage that requires urgent maintenance and rebuilding. The forum will be a state of read only until we install our new drives and rebuild all the configurations needed. Please follow our Facebook page for updates, we will be back up shortly! (The forum could go offline at any given time due to the nature of the failed drives whilst awaiting the upgrades.) When you see an Incapsula error, you know we are in the process of migration.

PlusEMU - Habboon Edit - PRODUCTION-201601012205-226667486

Status
Not open for further replies.
Initiate Mage
Joined
May 29, 2014
Messages
3
Reaction score
1
BRUH?!

Sledmore - PlusEMU - Habboon Edit - PRODUCTION-201601012205-226667486 - RaGEZONE Forums
 
Initiate Mage
Joined
Mar 24, 2016
Messages
2
Reaction score
0
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
 

Les

Visit http://Maple.wtf
Joined
Mar 7, 2007
Messages
525
Reaction score
47
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

Please note that there is a help section!
Click here ! http://forum.ragezone.com/f333/ Thanks!
 
Newbie Spellweaver
Joined
Jul 29, 2008
Messages
83
Reaction score
11
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.

nG4AZeG - PlusEMU - Habboon Edit - PRODUCTION-201601012205-226667486 - RaGEZONE Forums
 
Last edited:
Joined
Aug 24, 2012
Messages
604
Reaction score
304
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.

nG4AZeG - PlusEMU - Habboon Edit - PRODUCTION-201601012205-226667486 - RaGEZONE Forums
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;
            }
        }
:?:
 
Divine Celestial
Loyal Member
Joined
Oct 2, 2011
Messages
858
Reaction score
272
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.
 
Newbie Spellweaver
Joined
Apr 22, 2014
Messages
81
Reaction score
6
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.
 
Newbie Spellweaver
Joined
Feb 17, 2016
Messages
16
Reaction score
13
You act like he took a poop on it ffs:mellow:
 
Newbie Spellweaver
Joined
Jan 21, 2014
Messages
7
Reaction score
0
How to update the PRODUCTION-201601012205-226667486 to PRODUCTION 201604132204-637539863 ?
 
Status
Not open for further replies.
Back
Top