Skip to content

vxsilis/dekaokto

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

44 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation


Logo Logo

18 Μέρες Μετά (18 Days Later)

is an interactive text-based mystery game developed with Twine
by Vasilis Gavriilidis and Giorgos Rossis

Play The Game · Report Bug · Request Feature

Table of Contents
  1. About The Project
  2. Installation
  3. Usage
  4. Contributing
  5. License

About The Project

Built With

Installation

Download or clone this repo

git clone https://github.com/vxsilis/dekaokto.git

By forking and importing the file to Twine you automatically import the Harlowe library which is prerequisite to code the audio timing.

index.html is the main menu of the game which procceds to game.html which is the actual file written in Twine.

The game.html file is not supposed to be opened with a classic text editor but only throught the Twine Engine. The custom CSS and JS used for this project will appear under "Story JavaScript" and "Story Stylesheet" but you can also find the isolated code used here.

Usage

The most common way we used to show links and move from passage to passage is

[[Talk with the policeman|go to the policeman passage]]

or simpler

[[Talk with policeman]]

For text that will be displayed after some seconds

|clue)[This text went live 2 seconds late]

{(live: 2s)[
    (show: ?clue)
    (stop:)
]}

Every part of the story is wrapper around the <div class="story"> and the clickable links that moves the player to a new passage are wrapped around <div class="options">to follow the same styling and layout.

For more examples, please refer to the Harlowe Documentation & Twine Documentation

(back to top)

Contributing

Do you want to fix a bug or make an enchancement? Contributions are what make the open source community such an amazing place to learn, inspire, and create. Any contributions you make are greatly appreciated. To make sure you are contributing in the same coding path the project started check the Usage tab

If you have a suggestion that would make this better, please fork the repo and create a pull request. You can also simply open an issue with the tag "enhancement". Don't forget to give the project a star!

  1. Fork the Project
  2. Create your Feature Branch (git checkout -b feature/AmazingFeature)
  3. Commit your Changes (git commit -m 'Add some AmazingFeature')
  4. Push to the Branch (git push origin feature/AmazingFeature)
  5. Open a Pull Request

License

View code and images licence here.
All the sounds are free to use except chase.mp3, woman-fight.mp3, fight.mp3 which contain music that need to credit the original artist

(back to top)