R63-331 navigator fix

Page 1 of 2 12 LastLast
Results 1 to 15 of 16
  1. #1
    Live Ocottish Sverlord Joopie is offline
    LegendRank
    Jun 2010 Join Date
    The NetherlandsLocation
    2,767Posts

    R63-331 navigator fix

    Go to habbohotel -> navigators -> navigator.cs

    Search for: (In the function SerializeRoomListing)
    Code:
                    foreach (DataRow Row in Data.Rows)
                    {
                        UberEnvironment.GetGame().GetRoomManager().FetchRoomData((uint)Row["id"], Row).Serialize(Rooms, false);
                    }
    Replace it with this:
    Code:
    int i = 0;
                    foreach (DataRow Row in Data.Rows)
                    {
                        if (i != 0)
                        {
                            Rooms.AppendInt32(0);
                        }
                        UberEnvironment.GetGame().GetRoomManager().FetchRoomData((uint)Row["id"], Row).Serialize(Rooms, false);
    
                        i++;
                    }
    Greetz

    -Jos


  2. #2
    Account Upgraded | Title Enabled! MikeDavies is offline
    MemberRank
    Aug 2010 Join Date
    WalesLocation
    629Posts

    Re: R63-331 navigator fix

    OMG Thank you very much :)

  3. #3
    Banned Someuser is offline
    BannedRank
    Aug 2010 Join Date
    466Posts

    Re: R63-331 navigator fix

    If this works properly, thanks! :o

  4. #4
    Live Ocottish Sverlord Joopie is offline
    LegendRank
    Jun 2010 Join Date
    The NetherlandsLocation
    2,767Posts

    Re: R63-331 navigator fix

    Quote Originally Posted by Someuser View Post
    If this works properly, thanks! :o
    I always test my releases

    ---------- Post added at 02:06 PM ---------- Previous post was at 01:56 PM ----------

    Uhm, If haven't tested with events, But i think it's the same.

  5. #5
    Enthusiast danilo171294 is offline
    MemberRank
    Apr 2009 Join Date
    35Posts

    Re: R63-331 navigator fix

    error
    Error 3 'Uber.HabboHotel.Rooms.RoomManager' no contiene una definición de 'FetchRoomData' ni se encontró ningún método de extensión 'FetchRoomData' que acepte un primer argumento de tipo 'Uber.HabboHotel.Rooms.RoomManager' (¿falta una directiva de uso o una referencia de ensamblado?) C:\Documents and Settings\joseilton\Meus documentos\R63 Nova\HabboHotel\Navigators\Navigator.cs 503 64 Lavvo Emulator R59+

  6. #6
    Live Ocottish Sverlord Joopie is offline
    LegendRank
    Jun 2010 Join Date
    The NetherlandsLocation
    2,767Posts

    Re: R63-331 navigator fix

    Quote Originally Posted by danilo171294 View Post
    error
    Error 3 'Uber.HabboHotel.Rooms.RoomManager' no contiene una definición de 'FetchRoomData' ni se encontró ningún método de extensión 'FetchRoomData' que acepte un primer argumento de tipo 'Uber.HabboHotel.Rooms.RoomManager' (¿falta una directiva de uso o una referencia de ensamblado?) C:\Documents and Settings\joseilton\Meus documentos\R63 Nova\HabboHotel\Navigators\Navigator.cs 503 64 Lavvo Emulator R59+
    Uhm, I fixed it for slaxxer v3 or something like that

  7. #7
    Enthusiast danilo171294 is offline
    MemberRank
    Apr 2009 Join Date
    35Posts

    Re: R63-331 navigator fix

    Quote Originally Posted by joopie View Post
    Uhm, I fixed it for slaxxer v3 or something like that
    Know how to fix this error?
    Or so it was made for slaxxer v3

  8. #8

    Re: R63-331 navigator fix

    Thanks! Can you make the catalog fix for Build 365?

  9. #9
    Banned Someuser is offline
    BannedRank
    Aug 2010 Join Date
    466Posts

    Re: R63-331 navigator fix

    This is not the full fix,

    Tip: Uncomment something like this almost at the end in the Serialize void "Message.AppendBoolean(false);" ;)

  10. #10
    swagggggg Livar is offline
    MemberRank
    Oct 2008 Join Date
    United KingdomLocation
    2,272Posts

    Re: R63-331 navigator fix

    Thank's joopie.

  11. #11
    Enthusiast ZackJarvis1 is offline
    MemberRank
    Apr 2011 Join Date
    35Posts

    Re: R63-331 navigator fix

    i got a problem everytime i buy something from catalog and look in my inventory it dosent work any suggestions?

  12. #12
    Proficient Member HabsHotel is offline
    MemberRank
    Jan 2011 Join Date
    CanadaLocation
    167Posts

    Re: R63-331 navigator fix

    Will this work with Uber (ION) Emulators?

  13. #13
    Account Upgraded | Title Enabled! Tony is offline
    MemberRank
    Feb 2011 Join Date
    349Posts

    Re: R63-331 navigator fix

    Quote Originally Posted by HabsHotel View Post
    Will this work with Uber (ION) Emulators?
    had to laugh what do you think uber is based from.

  14. #14
    Novice chrs3 is offline
    MemberRank
    Apr 2011 Join Date
    1Posts

    Re: R63-331 navigator fix

    "No overload for method 'FetchRoomData' takes 2 arguments" - hmm.

  15. #15
    Account Upgraded | Title Enabled! Habblet is offline
    MemberRank
    Jul 2008 Join Date
    The NetherlandsLocation
    324Posts

    Re: R63-331 navigator fix

    Fix not working? maby you got a ohter emu...

    look for:
    Code:
    foreach (DataRow Row in Data.Rows)
                    {
                        UberEnvironment.GetGame().GetRoomManager().GenerateRoomData((uint)Row["id"]).Serialize(Rooms, false);
                    {
    change with:
    Code:
                    int i = 0;
                    foreach (DataRow Row in Data.Rows)
                    {
                        if (i != 0)
                        {
                            Rooms.AppendInt32(0);
                        }
                    
                        UberEnvironment.GetGame().GetRoomManager().GenerateRoomData((uint)Row["id"]).Serialize(Rooms, false);
                        i++;
                    }



Page 1 of 2 12 LastLast

Advertisement