Exit problem
zarathustra
30 Mar 2018, 09:00I'm new and just downloaded the latest desktop version. I tried to follow the tutorial about creating exit. But when i preview the game it seems didn't work at all. When i try the browser version, it works.
Is it some kind of bug or what? Could someone help me solve this?
Regards.
PS. I'm sorry for my bad english

CheeseMyBaby
30 Mar 2018, 10:14Hiya,
i'm pretty new too and I'm probably the one least qualified to answer.
However; when I started out I did like you (following the tutorial) and sometimes I made mistakes without knowing what I did and/or how to fix it.
When that happend I removed the script/command/function (exit, in this case) and started over. All the while reading very very carefully and following every word of the tutorial.
This really worked well for me. I'm, like I said, still new and don't know much but I have actually learned a lot.
Step 2 is, like you did, asking in the forums, people are very helpful in here. It would help them to answer if you copy/paste the code so they know what's up.
/cheese
zarathustra
30 Mar 2018, 15:30Hi, i just restart my tutorial. Create the game. And i directly run the game. As in tutorial doc said: when you type 'inventory' in command bar, there will appear some response: "you are not carrying anything." But guess what? I couldn't see that either :(
I'm getting frustrated here.

K.V.
30 Mar 2018, 16:15Can you post your game's code?
If you've never posted code, you can follow these links to learn how:
http://docs.textadventures.co.uk/forum/#codesamples
https://github.com/KVonGit/QuestStuff/wiki/Posting-Code-to-the-TextAdventures-Forum
zarathustra
01 Apr 2018, 16:41<!--Saved by Quest 5.7.6606.27193-->
<asl version="550">
<include ref="English.aslx" />
<include ref="Core.aslx" />
<game name="2099">
<inherit name="theme_typewriter" />
<gameid>3515bbb0-fdf5-41e6-8853-0245360f21df</gameid>
<version>1.0</version>
<firstpublished>2018</firstpublished>
<showhealth />
<showmoney />
<feature_limitinventory />
<feature_lightdark />
<feature_asktell />
<feature_advancedwearables />
<feature_advancedscripts />
<defaultfontsize type="int">14</defaultfontsize>
<menufontsize type="int">11</menufontsize>
<showpanes />
<turnoffcompass />
<turnoffplacesandobjects />
<showcommandbar type="boolean">false</showcommandbar>
<start type="script">
msg ("Kamu terbangun dengan nyeri hebat di belakang kepalamu. Tidak ada satu hal pun yang bisa menjelaskan kenapa kamu bisa berada disini. ")
</start>
<defaultbackground>Black</defaultbackground>
<defaultlinkforeground>WhiteSmoke</defaultlinkforeground>
<menufont>'Lucida Console', Monaco, monospace</menufont>
<defaultforeground>Chocolate</defaultforeground>
</game>
<object name="Restoran Fast Food">
<inherit name="editor_room" />
<descprefix type="string"></descprefix>
<objectslistprefix type="string"></objectslistprefix>
<description>Meja dan kursi makan berserakan di lantai. Angin malam yang masuk dari jendela yang pecah menambah sakit di kepalamu semakin menjadi. Suara genset sayup terdengar dari arah belakang.</description>
<usedefaultprefix type="boolean">false</usedefaultprefix>
<object name="player">
<inherit name="editor_object" />
<inherit name="editor_player" />
</object>
<exit alias="south" to="Dapur">
<inherit name="southdirection" />
</exit>
</object>
<object name="Dapur">
<inherit name="editor_room" />
<usedefaultprefix type="boolean">false</usedefaultprefix>
<dark type="boolean">false</dark>
<darkroomdescription type="string"></darkroomdescription>
<description>Kulkas dan beberapa alat masak mungkin masih berfungsi.</description>
<descprefix type="string"></descprefix>
<objectslistprefix type="string"></objectslistprefix>
<exit alias="north" to="Restoran Fast Food">
<inherit name="northdirection" />
</exit>
</object>
</asl>

K.V.
01 Apr 2018, 16:55You have the command bar disabled.
You can remove this line from code view:
<showcommandbar type="boolean">false</showcommandbar>
OR you can fix it in the GUI:
zarathustra
01 Apr 2018, 17:04Hi, thanks for the fast response.
Just enabled the command bar, but still couldn't activate exit from "Restoran" to "Dapur"

K.V.
01 Apr 2018, 17:18I enter GO SOUTH, and I go south.
I may not understand what you're trying to do...
...unless you're wanting to add a different language template to the game, or wanting an EXIT command.
jmnevil54
01 Apr 2018, 18:06I believe this person already solved their problem.