Ascii Sector Wiki
(typo)
Tag: Visual edit
(clarify)
Tag: Visual edit
Line 1: Line 1:
Quests are user-generated missions/adventures that [[player]]s can download from http://www.asciisector.net/forum/quests/ and play within Ascii Sector. They are also a way to earn extra achievements that will show up in your [[Quine 5000]].
+
Quests are user-generated missions/adventures that [[player]]s can download from http://www.asciisector.net/forum/quests/ and play within Ascii Sector. Completing them earns you ''Achievements'' that will show up in your [[Quine 5000]].
   
After you've downloaded them into Ascii Sector's ''quests'' directory press 'Q' while landed on any planet or base to choose which quest to play. The plot is then usually kicked off by talking to a [[Bartender]].
+
After you've downloaded them into Ascii Sector's ''quests'' directory press '''Q''' while landed on any planet or base to choose which quest to play. The plot is then usually kicked off by talking to a [[Bartender]].
   
 
'''Note for Linux users:''' If you get a message like ''"Error: quests/quests/lady1.qst - File not found"'' at the end of a quest create a symlink in ''quests/'' pointing to the current directory, like this:
 
'''Note for Linux users:''' If you get a message like ''"Error: quests/quests/lady1.qst - File not found"'' at the end of a quest create a symlink in ''quests/'' pointing to the current directory, like this:
 
cd quests
 
cd quests
 
ln -s . quests
 
ln -s . quests
After that all quest should complete and show up in the Quine's "Achievements" correctly.
+
After that all quest should complete and show up in the Quine's ''Achievements'' tab correctly.
   
 
==Quest Notes/Walkthroughs==
 
==Quest Notes/Walkthroughs==

Revision as of 18:21, 27 October 2018

Quests are user-generated missions/adventures that players can download from http://www.asciisector.net/forum/quests/ and play within Ascii Sector. Completing them earns you Achievements that will show up in your Quine 5000.

After you've downloaded them into Ascii Sector's quests directory press Q while landed on any planet or base to choose which quest to play. The plot is then usually kicked off by talking to a Bartender.

Note for Linux users: If you get a message like "Error: quests/quests/lady1.qst - File not found" at the end of a quest create a symlink in quests/ pointing to the current directory, like this:

cd quests
ln -s . quests

After that all quest should complete and show up in the Quine's Achievements tab correctly.

Quest Notes/Walkthroughs

Writing Your Own

If you'd like to write your own story look at the commented source code of the "Kilrathi Hunt" example quest and download the Quest Maker's Manual qmanual.pdf from Ascii Sector's quest page above.

Note there is a bug when compiling your own quests under Linux: When including image files, like the example quest does, all *.img files must be present written both with all small and all capital letters, because the program is inconsistent about it. This doesn't matter under Windows, but Linux treats it as two differerent file names. So, before compiling make a copy/link for every *.img, e.g. for the example quest:

ln holo.img HOLO.img
ln intro1.img INTRO1.img
...