Skip to content
This repository has been archived by the owner on Apr 30, 2021. It is now read-only.

Making your first room

Rarisma edited this page Nov 1, 2020 · 1 revision

Congratulations on making it this far!

It is important to note that a new game will always start from the folder called start in your 1 folder, however you will be able to change this in a future update.

A room must always contain 3 files called T.txt O.txt and L.txt

What is T.txt?

T.txt contains all the text you show to your user so if you put Hello World, the user will see Hello World when they get to that room.

What is O.txt?

O.txt has all the names of the options the user can perform in that room, each option should be on its own line so if you wanted to get the user to pick one two or three you would put one on the first line, two on the second line and three on the third line

What is L.txt

L.txt works the same way as O.txt however instead of names it stores folder names with one on each line so if the user picks the 2nd option the game will send them to the folder that is on the 2nd line of L.txt

It is critical that O.txt and L.txt have the same amount of lines or your game will not function.

Clone this wiki locally