It’d be awesome if we could have a way to generate a random integer to allow for some fun chaos/unpredictability in stories.
The example below shows a hypothetical random integer between 1 and 5, which follows the same rules when it comes to setting values to a character.
The outcome decides who your MC goes on a date with next (maybe for a dating show type of story?)
@CHARACTER =random 1 5
if (CHARACTER =1) {
NARR
Congrats! You're going on a date with Brad!
} elif (CHARACTER =2) {
NARR
Congrats! You're going on a date with Ashley!
} elif (CHARACTER =3) {
NARR
Congrats! You're going on a date with Jacob!
} elif (CHARACTER =4) {
NARR
Congrats! You're going on a date with Lily!
} else {
NARR
Aw darn, you're staying in tonight! :(
}


