I’m having trouble with the sexual orientation part of my almost “self-published” game.
I’d like to give the player the ability to choose their preferences in the story.
My story is set in a small town with family and friends and there will be journeys and quests and such. And at some point in the story there will be options available for almost every action. Long story short–is there a way that I can set the preferred choice permanently for either option?
Example:
*choice #Men/Gentleman
*set to “men”
*goto Ballroom #Women/Ladies
*set to “women”
*goto Ballroom
Can I alternate the story depending on which preference they select?
Or should I keep the characters I have as romantic interests for the player as both female and male?
Example:
9 characters as romantic interests
3 characters = 3 males
3 more characters = 3 females
3 other characters = non-binary/trans and/or undetermined/unknown
Without alternating the story or asking for a preference in sexual orientation.
Any answers on how I can do it in ChoiceScript?
I need help.
*choice #Men/Gentleman
*set orientation men
*goto Ballroom #Women/Ladies
*set orientation women
*goto Ballroom
And so later on, let’s just say it’s a lesbian choice you bring up, it could say something like . . .
*selectable_if (orientation = “women”)
or
*if orientation = “women”
I hope this helped or at least answered your question, if not then my apologies.
To answer your questions: choicescript is very manageable. Chances are you can do whatever you want to add to your story.
Yes.
That’s a personal preference. Some authors leave the opportunity to flirt with all the ROs open. My personal opinion is: No, unless the MC is bi or pan. So I rather put a bit more of code to make sure a straight female MC can flirt with male ROs without the option to flirt with girls popping up all the time and possibly breaking immersion for the player. The way to do this is:
*The way I code nonbinary people is not how I see them, mind you, it’s a way to tell the game how to act.
Then again, maybe you want to flip all the ROs’ genders depending on the MC’s orientation. There’s a way to do that, but I’m not really sure, since that’s not my cup of tea.~~
*I added the option to be bi, which I’m not saying you should add, but yeah, you tots should.~~~
@pimenita Really? Will the code in that same exact order here actually work for the S.O. part? Or is it an example of it? Either way, I will try it out! Thank you so much for your input!
Personally, I like having a mix of gender-flippable and gender-fixed romantic options. Flippable options give non-bisexual players more availability, whereas fixed options seem to help with the immersion for bisexual players. (My opinion, anyway. If all the potential romances flip one way after the first romance choice, am I still playing as bi?) I’m also in favour of an asexual/aromantic option, not only for asexual/aromantic players, but I’m sure that sometimes people would like to play without a romantic subplot getting in the way.
My way of setting up flippable options is to simply have a pronoun variable to keep track of the preferred flip: *if (ziy = “he”) then all flippable romances are men, and the variable can do double duty as a pronoun.
That seems an overly-complicated way of doing it. What’s wrong with:
You prefer:
*fake_choice
#Guys.
*set preference "male"
#Girls.
*set preference "female"
#Neither. You're not interested in romance.
*set preference "neither"
#Both guys and girls.
*set preference "both"
That way you can just check if people prefer males or females, without having to check their gender first, e.g.
You meet a cute guy.
*fake_choice
*if ((preference = "male") or (preference = "both")) #Flirt with him.
He kisses you.
#Say hi.
He says hi.
#Murder him.
Now he's dead.
(Note that this example was intentionally silly, but the idea would be the same in other contexts.)
Gender-flipping can lead to problems, and a lot of people don’t like it. I guess you should probably stay away from it unless you know what you’re doing.
It seems legit. I like the simplicity and straightforwardness of it. So if I set preference to either male, female, neither or both it will automatically switch to one or the other or either or none? And does it have to be fake choice?
I’m having issues with the stat screen reflecting the players choices, I’ve worked out the name but family and gender I just can’t seem to get right.
This is a stats screen!
*stat_chart
text Name
text Family family
text Gender
percent Leadership
percent Strength
percent Agility
percent Intelligence
percent Morganna
percent Dagonet
percent Saxon
percent Tudor
Your family name is ${dan3}
*finish
#Buxton
Your family name is ${family2}.
*finish
#Create your own.
*input_text family
So your family name is ${family 1}.
*finish
Obviously I will change the variables but I want to change the stats screen to reflect what the player chooses.
so if a player chose pendragon then it would say that in the stats for the duration of the game
Your family name is
*choice
#Pendragon
*set family "Pendragon"
Your family name is ${family}.
*finish
#Buxton
*set family "Buxton"
Your family name is ${family}.
*finish
#Create your own.
*input_text family
So your family name is ${family}.
*finish
As long as you you use *set after the choice and type in the name that’s supposed to show up you’re good.
Using
text Family
will then display that name in the stats