[BcStorm] [R63B] Public rooms fix ?

Results 1 to 8 of 8
  1. #1
    Member DarkSilk is offline
    MemberRank
    Nov 2008 Join Date
    50Posts

    [BcStorm] [R63B] Public rooms fix ?

    How can i fix the navigator Public room list ?
    I use the BcStorm Emu and it's R63B

    navigator-error.png


  2. #2
    Grand Master Emily is offline
    Grand MasterRank
    Oct 2012 Join Date
    The NetherlandsLocation
    2,408Posts

    Re: [BcStorm] [R63B] Public rooms fix ?

    Quote Originally Posted by DarkSilk View Post
    How can i fix the navigator Public room list ?
    I use the BcStorm Emu and it's R63B

    navigator-error.png
    Try replace in C#:

    SerializePublicRooms

    Into:

    PHP Code:
            internal ServerMessage SerializePublicRooms()
            {
                
    ServerMessage message = new ServerMessage(Outgoing.SerializePublicRooms);
                
    message.AppendInt32(this.PublicItems.Count);
                foreach (
    PublicItem item in this.PublicItems.Values)
                {
                    if (
    item.ParentId <= 0)
                    {
                        
    item.Serialize(message);
                        if (
    item.itemType == PublicItemType.CATEGORY)
                        {
                            foreach (
    PublicItem item2 in this.PublicItems.Values)
                            {
                                if (
    item.Id == item2.ParentId)
                                {
                                    
    item2.Serialize(message);
                                }
                            }
                        }
                    }
                }
                
    message.AppendInt32((this.PublicItems.Count 0) ? 0);
                
                if (
    this.PublicItems.Count 0)
                {
                    
    int num = new Random().Next(1this.PublicItems.Count);
                
                    try
                    {
                        
    this.PublicItems[num].Serialize(message);
                    }
                    catch
                    {
                        
    this.PublicItems[1].Serialize(message);
                    }
                }
                
                
    message.AppendInt32(0);
                return 
    message;
            } 

  3. #3
    Member DarkSilk is offline
    MemberRank
    Nov 2008 Join Date
    50Posts

    Re: [BcStorm] [R63B] Public rooms fix ?

    Quote Originally Posted by Tha View Post
    Try replace in C#:

    SerializePublicRooms

    Into:

    PHP Code:
       *code
    Where can i find SerializePublicRooms ?

  4. #4
    Grand Master Emily is offline
    Grand MasterRank
    Oct 2012 Join Date
    The NetherlandsLocation
    2,408Posts

    Re: [BcStorm] [R63B] Public rooms fix ?

    Quote Originally Posted by DarkSilk View Post
    Where can i find SerializePublicRooms ?
    In visual studios, open the project, go to Butterfly -> HabboHotel -> Navigators -> Navigator.cs, in that file is the code.

  5. #5
    Member DarkSilk is offline
    MemberRank
    Nov 2008 Join Date
    50Posts

    Re: [BcStorm] [R63B] Public rooms fix ?

    it's not working :(
    Maybe i add the public rooms ? and how ?

  6. #6
    Newbie TwistyTM is offline
    MemberRank
    Jan 2013 Join Date
    20Posts

    Re: [BcStorm] [R63B] Public rooms fix ?

    Change your navigator_publics_new.

    1 1 0 Home Room Home Room officialrooms_hq/gamefolder.gif internal 396 0 -1 1 0 4
    Screenshot by Lightshot

  7. #7
    Member DarkSilk is offline
    MemberRank
    Nov 2008 Join Date
    50Posts

    Re: [BcStorm] [R63B] Public rooms fix ?

    ty it's working ! :)

  8. #8
    Elite Member prodigy007 is offline
    Member +Rank
    Feb 2013 Join Date
    MissouriLocation
    177Posts

    Re: [BcStorm] [R63B] Public rooms fix ?

    But how do you get the backdrop to load when your in the room? Every one I have in there has no backdrop and no items. Just empty rooms.



Advertisement