it isnt the emulator its the clothes you added that isnt working properly. if you need help make a help thread
Printable View
CMS Related ?
Fix for stacktool? You cant place them on every furni.
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
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.
http://i.imgur.com/nG4AZeG.png
:?: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;
}
}
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.
Help ?
Screenshot by Lightshot
Screenshot by Lightshot
- - - Updated - - -
Sin logs error
Help thread is here: http://forum.ragezone.com/f333/offic...-help-1090581/
Hi
Thanks
Screenshot by Lightshot
Badge fix?