Create characters in order to use them as a point system! For example:
Create a character called “FRIENDSHIP” for your friendship points, and whenever a choice impacts the story and adds a point to the friendship system you do this:
(I’m using a choice for example)
choice
“Confide in her”{
@FRIENDSHIP +1
}
“It’s too personal.”{
@FRIENDSHIP -1 (or just delete this line if it doesn’t impact the point system)
}
Then, later on if you want to have scenes that are only available if you have a certain amount of points you’d do this:
(I’m going to be using 3 points for example…)
if (FRIENDSHIP > 3){
insert the scene here
}
elif (FRIENDSHIP < 3){
insert the scene here
}