How can i fix the navigator Public room list ?
I use the BcStorm Emu and it's R63B
Attachment 123580
Printable View
How can i fix the navigator Public room list ?
I use the BcStorm Emu and it's R63B
Attachment 123580
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) ? 1 : 0);
if (this.PublicItems.Count > 0)
{
int num = new Random().Next(1, this.PublicItems.Count);
try
{
this.PublicItems[num].Serialize(message);
}
catch
{
this.PublicItems[1].Serialize(message);
}
}
message.AppendInt32(0);
return message;
}
it's not working :(
Maybe i add the public rooms ? and how ?
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
ty it's working ! :)
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.