-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.ink
More file actions
33 lines (28 loc) · 700 Bytes
/
main.ink
File metadata and controls
33 lines (28 loc) · 700 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
INCLUDE variables.ink
INCLUDE utils.ink
INCLUDE 01-schoolboy-room.ink
INCLUDE 02-school.ink
INCLUDE endings.ink
INCLUDE 03-library.ink
INCLUDE 04-back-in-time.ink
I wake up. Something is wrong.
This is not my body.
// ~ temp state = get_random_index()
// ~ temp name = names(state)
~ temp name = "Connor"
VAR DEBUG = false
{DEBUG:
IN DEBUG MODE!
~ knows_gf = true
~ read_books = 3
~ teacher_suspicious = true
~ writing_instrument = "red pen"
~ wearing_hat = false
* [bedroom] ->schoolboy_room
* [school] -> school.start
* [library] -> library.entrance
* [back in time] -> back_in_time.start
- else:
* [Get up and look around. ] I get up and look around.
-> schoolboy_room
}