Run a colony on the Red Planet. An episodic series of Twine games.
- Play current build with full navigation and branching narrative. Very WIP, but solid.
Work in Progress
- UI is styled and works on mobile, tablet, and desktop.
- All locations on map exist and you can navigate between them via links.
- Plot, Scene, Branch, Action, Location macros written to support multiple plots with branching scenes.
- A few initial scenes are set up for testing the macros.
- Twee structure set up to support common elements and episode specific elements for compilation.
- More scenes, character, and location sketches are being written in Scrivener (NextRock - Ep1.scriv)
- Here is a handy project that may help. Good luck and godspeed.
- Unzip distribution file in your home directory
- Create a symbolic link to the executable:
ln -s ~/tweego-2.0.0-macos-x86/tweego /usr/local/bin/tweego
- Create a symbolic link to the storyformats:
ln -s ~/tweego-2.0.0-macos-x86/storyformats ~/.storyformats
- Download the project as a
.zip
file and unzip wherever you keep your projects. - OR if you have
git
installed on your system:
cd path/to/your/projects
git clone https://github.com/cliffhall/NextRock.git
cd path/to/NextRock
npm install
npm run build-once
Open docs/index.html
in your browser of choice
To work on JS, CSS, and TWEE sources and have them continuously compiled as you make changes, you need to open two dedicated terminal windows and run:
npm run watch:gulp
and
npm run watch:twee
The skeleton for this project is called slim-tweego. For more information about how it works or to start your own tweego project, go there.