PlusEmu Roomname?

Brad

Well-Known Member
Jun 5, 2012
2,319
992
at first the Room info header said ...
but then i added this to the external_flash_texts.txt
navigator.roomsettings.roomname=Room: %roomname%

mde1R1I.png


What do i have to replace the %roomname% in order for the actual room name to show?
 

Timothy

Kylie Jenner
Sep 25, 2013
674
79
Maybe the %roomname% isn't the code to tell people the name of the room they are in. I wouldn't use %roomname% until u find the real code used to tell the name of the room. :p I helped so much. <_< >_>
 

Thom

You can't touch this
Oct 1, 2010
1,305
386
You need to go to one of the voids which sends the room data and change a
Message.AppendBoolean(false);
to
Message.AppendBoolean(true);

Not sure which one, have to experiment and see what happens :)
 

Sledmore

Chaturbate Livestreamer
Staff member
FindRetros Moderator
Jul 24, 2010
5,195
3,906
You need to go to one of the voids which sends the room data and change a
Message.AppendBoolean(false);
to
Message.AppendBoolean(true);

Not sure which one, have to experiment and see what happens :)

Pftt!
--
Find;
PHP:
internal void SerializeRoomData(ServerMessage Response, bool FromView, GameClient Session, bool SendRoom = false)

Just under the RoomData header you need to do as Tom said;
PHP:
Response.AppendBoolean(true);

You may also have to do it under;
PHP:
internal void OnRoomUserAdd()

Tooo!
 

Brad

Well-Known Member
Jun 5, 2012
2,319
992
On this part
Code:
internal void OnRoomUserAdd()
which one is is? theres 4 of these
Code:
Response.AppendBoolean(false);
            Response.AppendBoolean(false);
            Response.AppendBoolean(false);
            Response.AppendBoolean(false);

the first just makes you reload the room doesn't let you enter? so do you know which one? or is all of them wrong?
 

Brad

Well-Known Member
Jun 5, 2012
2,319
992
ignore that part^ it works but only when you've clicked room settings then go back off the settings? seems like it's not loading itself any ideas?
 

Crup

weeeeee
Jul 25, 2010
545
310
On this part
Code:
internal void OnRoomUserAdd()
which one is is? theres 4 of these
Code:
Response.AppendBoolean(false);
            Response.AppendBoolean(false);
            Response.AppendBoolean(false);
            Response.AppendBoolean(false);

the first just makes you reload the room doesn't let you enter? so do you know which one? or is all of them wrong?

Ye, this should pretty much work.
 

Users who are viewing this thread

Top