-
Notifications
You must be signed in to change notification settings - Fork 0
Making your first room
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
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.
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
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.