How do I disable this from emulator

Results 1 to 3 of 3
  1. #1
    Alpha Member Glee is offline
    MemberRank
    Jun 2009 Join Date
    Niagara Falls,Location
    2,225Posts

    How do I disable this from emulator

    I want to disable this from the emulator



  2. #2
    Account Upgraded | Title Enabled! FapInc is offline
    MemberRank
    Nov 2012 Join Date
    499Posts

    Re: How do I disable this from emulator

    You can't, but you can extend the time i think, than it wont come that often :)

  3. #3
    Account Upgraded | Title Enabled! Flurrie is offline
    MemberRank
    Jun 2010 Join Date
    281Posts

    Re: How do I disable this from emulator

    Open Butterfly -> HabboHotel -> Rooms -> RoomManager.cs

    Find:
    PHP Code:
    if (span.TotalSeconds 3.0)
                    {
                        
    Console.WriteLine("RoomManager.OnCycle spent: " span.TotalSeconds " seconds in working.");
                    } 
    Replace:
    PHP Code:
    if (span.TotalSeconds 3.0)
                    {
                        
    //remove it from writing to console
                    

    Find:
    PHP Code:
    TimeSpan span = (TimeSpan) (DateTime.Now now);
                            if (
    span.TotalSeconds 3.0)
                            {
                                
    Console.WriteLine("RoomManager.OnCycle spent: " span.TotalSeconds " seconds in working.");
                            } 
    Replace:
    PHP Code:
    TimeSpan span = (TimeSpan) (DateTime.Now now);
                            if (
    span.TotalSeconds 3.0)
                            {
                                
    //remove from writing to console
                            




Advertisement