Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

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
 

Attachments

You must be registered for see attachments list
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;
            }
        }
:?:
 

Attachments

You must be registered for see attachments list
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.
 
Junior Spellweaver
Joined
Jan 1, 2016
Messages
157
Reaction score
23
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.


and still it's warning for trojan ROFL, m8 i got a feeling you just wanna fck some stuff up:sneaky2:
 
Newbie Spellweaver
Joined
Sep 16, 2014
Messages
12
Reaction score
0
Help ?






Sin logs error
 
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