Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines
(+1)

How did you make a timer? I liked how the descriptions of each student were randomized and forced the player to read through the application carefully but fast enough so that you don't get fired by your boss. 

The timer was made with a defined variable ($time) and using the command "(live:)[]"

"(live:)[code goes here]" will update whatever you code inside of it after every unit of time (e.g. (live: 1s) will update every second).

This is pretty much what I did:
(set: $time to 90)
(live: 1s)[(set: $time to it - 1)]

(+1)

Ohhh, thank you!