Remove the "." after the Room name.

Xilefenko
21 Nov 2016, 16:58

How can you remove the "." dot behind the room Name?


Deckrect
21 Nov 2016, 17:08

I am not sure, but try removing the "use default prefix/suffix" because, in my game, the "." is not occurring.


Xilefenko
21 Nov 2016, 18:10

He is still there


Deckrect
21 Nov 2016, 18:52

I did some tests and i am clueless.


XanMag
22 Nov 2016, 04:19

I tinkered with this when trying to make my title screen. Couldn't figure it out either.


Pertex
22 Nov 2016, 06:55

The "." is hardcoded. If you want to remove it you must import the function ShowRoomDescription into your game (choose "Filter" in the left lower corner of Quest and activate "Show library elements". Then search this function and press the copy button.
Then change to code view and search this line

desc = AddDescriptionLine (desc, youarein + " " + GetDisplayName(game.pov.parent) + "." )

Remove the

+ "."

Xilefenko
22 Nov 2016, 13:37

Thanks