Twine Version: 2.3.16 (Browser)
Story Format: SugarCube 2.36.1
I’ve decided to make another game, this time somewhat inspired by a franchise I’ve loved since I was a kid. Nintendo’s “Legend of Zelda” franchise is what I wanted to use. In the story, the player is prompted to create a Hylian for themself. They create the character and it is used in the story. I’m thinking about adding a customizable name for the player, though I don’t think I want that yet. I just want to get this first part done. Moving on, I want to give an option for the player to choose from being male
, female
and non-binary
. After that, I want them to be given the option for their romantic preference. Male
, female
, no preference
or aromantic
(no romance at all). I’d like for it to be similar to an adventure game, kind of like the player exploring the world and seeing what they want to do. I’d like to add sidequests, like many Zelda games have, though I’m not entirely sure on how to do so. I’m thinking about doing a listbox this time, rather than what I did before (I created a different game, the main character chooses from liking guys or girls or no one after choosing their gender in separate passages). I used another user’s question to start, that being the “How do I do romance options” article for it, but I’m not sure what to do after. I used souppilouliouma’s code that looked like this:
<label><<radiobutton "$gender" "male" autocheck>> I'm a man!</label> <label><<radiobutton "$gender" "female">> I'm a woman!</label> <label><<radiobutton "$gender" "fluid">> I'm genderfluid!</label> <label><<radiobutton "$gender" "nonbinary">> Dude, your questions are somewhat obsolete, don't you think?</label>
for the gender and their code for romantic preference, as well, that being this:
<label><<radiobutton "$romantic_preference" "men" autocheck>> I'm attracted to men!</label>
<label><<radiobutton "$romantic_preference" "women">> I'm attracted to women!</label>
<label><<radiobutton "$romantic_preference" "no preference">> I'm attracted to both!</label>
<label><<radiobutton "$romantic_preference" "asexual">> I'm attracted to neither!</label>
I’m not sure why the article isn’t working for my project, I’m using the same model of SugarCube (I think?) and I put in the same code. Is there something I’m missing? Like a different format? Thank you for any help I receive, I may just be being dumb but I want to make sure I get this done.