I thought I knew what I was doing (vaguely) enough to continue with content. I have 15 *goto_scene txt files that I’ve gotten through up until this point, and I am stuck. I don’t know what I am doing wrong. I’ve checked spelling and retyped the ‘non-existent variables’ on the file and in startup but it has continued.
I use dashingdon.com to alpha-test (because I can’t figure out how to test it independently), could using dashingdon be the problem?
Is it that there are two underscores within the variable?
Am I just blind and can’t spell??
Any help would be appreciated.
Within the choicescript_stats.txt the same variable are existent and display correctly. Up until I get the error on this page it display correctly with uknown in the place of the variable.
I am romatically interested in {romantic_orientation_preference} and attracted to {sexual_orientation_preference}.
I keep getting “Nonexistent variable” and it alternates from “non-existent variable: romantic_orientation_preference” and “non-existent variable:sexual_orientation_preference”.
Within the startup.txt I created
*create sexual_orientation_preference “unknown”
*create romantic_orientation_preference “unknown”
My code looks like this:
*label orientation_chapter1
"$!{first_name}", the voice changed, echoed thousands
I remember. Strangers, friends, and even more personal.
"$!{first_name}," the voice repeated, softer resounding
[i]that[/i] person.
*choice
#A man I once knew.
*set sexual_orientation_preference "men"
*set romantic_orientation_preference "men"
*goto_scene scene3_chapter1
#A woman I once knew.
*set sexual_orientation_preference "women"
*set romantic_orientation_preference "women"
*goto_scene scene3_chapter1
#The voice is resounding both of a man and a woman.
*set sexual_orientation_preference "men and women"
*set romantic_orientation_preference "men and women"
*goto_scene scene3_chapter1
#A man I was romantic with, but not sexually.
*set sexual_orientation_preference "none"
*set romantic_orientation_preference "men"
*goto_scene scene3_chapter1
#A woman I was romantic with, but not sexually.
*set sexual_orientation_preference "none"
*set romantic_orientation_preference "women".
*goto_scene scene3_chapter1
#The voice of my best friend.
*set sexual_orientation_preference "none"
*set romantic_orientation_preference "none"
*goto_scene scene3_chapter1
Could it be the period after "women" that’s causing this issue? (Assuming it’s not a typo.)
Also, if you’re not already using it, I highly suggest CSIDE to write your game as it has an built-in testing method and will tell you the exact line in your document that’s causing the issue, hopefully pinpointing things further.
Yes. A whole list of them, but these two are near the bottom of the list.
Does location on it matter?
I’ve tried to put them in order by which they are established.
I think the period is a typo. (Lol) most of testing has been on the first option, a man, and it just halts at that point.
CSIDE? Can you point me to some info regarding that. I dont believe I’m familiar.
Can you post the code from the page you’re getting the error on? The page with “I am romatically interested in {romantic_orientation_preference} and attracted to {sexual_orientation_preference}”?
If you’re willing to post the Dashingdon link to your game, that’d be the fastest way to figure out what’s going wrong.
Think I might have found your issue. When through and chose the first answer for sexual orientation and for the error I got ‘sexual_orientation_prefernce’ (notice, preference is spelled wrong (edit: A bit more info, specifically in scene3 chapter1).
One thing I want to ask, how are you setting up your scenes- are you sending everything to a completely new page, or all on one page?
I’ll double check all the spelling for the variables! Thank you! I guess I am just blind!
Each new scene I set up a new page. Is that the correct thing to do?
It might be easier to put portions in one so you don’t have a bunch of different pages all saying the same thing. I took a quick peek through dashingdon and I noticed you had about three of each scene. Generally, beginning stuff like that gets put in startup (or chapter 1, or what have you). And then, if there are differences in text (hence the three different scenes for each of the same thing), you can condense it with *if variables or even *fake_choices (these don’t require a *goto to continue on).
Thank you! I plan to learn more to use those and decrease the number of text files by doing so, but I thought before I made things too complex to make sure I had a good basis for the beginning.
I really appreciate your assistance, even if it was for something as simple as a misspelling I couldn’t find