I want to disable this from the emulator
http://i50.tinypic.com/2d796ad.png
Printable View
I want to disable this from the emulator
http://i50.tinypic.com/2d796ad.png
You can't, but you can extend the time i think, than it wont come that often :)
Open Butterfly -> HabboHotel -> Rooms -> RoomManager.cs
Find:
Replace:PHP Code:if (span.TotalSeconds > 3.0)
{
Console.WriteLine("RoomManager.OnCycle spent: " + span.TotalSeconds + " seconds in working.");
}
Find:PHP Code:if (span.TotalSeconds > 3.0)
{
//remove it from writing to console
}
Replace:PHP Code:TimeSpan span = (TimeSpan) (DateTime.Now - now);
if (span.TotalSeconds > 3.0)
{
Console.WriteLine("RoomManager.OnCycle spent: " + span.TotalSeconds + " seconds in working.");
}
PHP Code:TimeSpan span = (TimeSpan) (DateTime.Now - now);
if (span.TotalSeconds > 3.0)
{
//remove from writing to console
}