I'll explain with an example: let's say that there are two endings
if you do like more than 10 bad things you get the bad ending, while if you do less than 10 bad things or if you do more than 10 good things you get the good ending
How can I do this?
Creating different endings with "points"?
● ARCHIVED · READ-ONLY
-
-
You use a variable to keep track of your "points". Then on every time you do good/bad things modify that variable (like reduce by 1 if bad thing or add 1 if good)
or if you want to keep track of them separately, just use 2 variables (one for good, one for bad) -
Thanks!You use a variable to keep track of your "points". Then on every time you do good/bad things modify that variable (like reduce by 1 if bad thing or add 1 if good)
or if you want to keep track of them separately, just use 2 variables (one for good, one for bad)