I want to record how many times SL in a specific story
i can record the global SL situation,but i cant record the specific story…
What does SL stand for?
1 Like
In general, if you want to check if something happened, you will need the <<if>>
macro with the thing you want to check. What is included in the macro will depend on what kind of information you want to check and where it is saved:
- a choice made in-game, saved in a variable. E.g.
<<if $var is true>>
- a visited passage, through a function. E.g.
<<if visited("Tree") >>
- metadata, through a function. E.g.
<<if recall('achievements') is 5>>
- a setting is enabled. E.g.
<<if settings.notification is true>>
- a random number, through a function. E.g.
<<if random(5,10) is 7>>
But yeah… it would be easier if you could tell us what SL means.
save and load
Save and load …Im soooo sorry i forgot to explain it TT
You want to see if a player saved a playthrough in particular page before? Or how many times a playthrough has been saved throughout the story?
Just for info: what would be the purpose in-game for this information to be saved? Is it like some sort of statistic you want to keep or to have an auto-load when the game starts?