So, I’ve read a lot of guides. You’ve probably seen me linking them around to people. Alas they have not helped me this day. Some how the game believes i do not have a crowd variable when in fact, I most certainly do. However it keeps telling me i do not, and that this variable doesn’t exist. The funny thing is, I coded it exactly like I did the sexual orientation, except that is based on your gender. This is solely based on the crowd itself. Basically the crowd can get drunk and you lose a chance to meet someone after you choose two other choices. I want to set the crowd to drunk so you wont be able to speak with them. Here is the code.
*title Chronicles Of Hallarmuli
*author Mikayla Baughman
*scene_list
startup
choicescript_stats
enteringmon
father
sold
saved
questions
council
Leif
mingling
ending
*create Name""
*create Gender""
*create Occupation""
*create Money""
*create Health""
*create Ruthless "50"
*create Rebellion "50"
*create Brutality "50"
*create Persuasion "50"
*create Stamina "10"
*create Agility "10"
*create Strength "10"
*create Intelligence "10"
*create Perception "10"
*create Steel "5"
*create Archeryrep "5"
*create Archery "???"
*create Unarmed "5"
*create Stealth"5"
*create Mysticsrep "5"
*create Mystics "???"
*create Bluntrep "5"
*create Blunt "???"
*create Erlandrep "50"
*create Erland "????"
*create Henrikrep "50"
*create Henrik "????"
*create Asgerrep "50"
*create Asger "????"
*create Sigrunrep "50"
*create Sigrun "????"
*create Leifrep "50"
*create Leif "????"
*create Brynjarrep "50"
*create Brynjar "????"
*create Siblingrep "50"
*create Sibling "????"
*create Brother false
*create Sister false
*create Name "Adam"
*create Name "Ana"
*create Name "William"
*create Name "Katherine"
*create Name "???"
*create Name "Christopher"
*create Name "Edmund"
*create Name "Susanne"
*create Name "Mary"
*create Sibname "???"
*create orientation "yes"
*create crowd "sober"
*set Name "???"
*set Gender "???"
*set Occupation "Adventurer"
*set Health "100"
*set Money "Not a rock to your name."
here is orientation,
Slowly you realize what he means.
*choice
#"I myself only like women."
*if (Gender="Male")
*set orientation "straight"
*goto_scene council
*if (Gender="Female")
*set orientation "lesbian"
*goto_scene council
*else
*set orientation "women"
*goto_scene council
#"I prefer only men."
*if (Gender="Male")
*set orientation "gay"
*goto_scene council
*if (Gender="Female")
*set orientation "straight"
*goto_scene council
*else
*set orientation "men"
*goto_scene council
#"Both, actually, is my preference."
*set orientation "bi"
*goto_scene council
#"You are right about one thing. Sex doesn't interest me."
*set orientation "ace"
*goto_scene council
and then my attempt to drunken the crowd.
*label mingle
*hide_reuse globally
What will you do?
*choice
#Keep talking to Erland.
*if (crowd="sober")
*set crowd "semisober"
*else
*set crowd "drunk"
*hide_reuse globally
You stick by Erland, watching him as he is lost in thought. His black
locks are messily falling out of a partial knot on the crown of his head.
They dry around his strong jaw in wispy curls. Erland jerks himself out of
his thoughts with a small flinch, seemingly feeling your eyes on him. He
looks up at you with his own, blown wide with surprise. You notice close
up that his ice blue irises are a deeper sapphire blue at the center. He
clears his throat awkwardly under your scrutiny and rubs his neck.
*choice
#Do you always do that when you are nervous?
boop
#I didn't mean to make you look bad.
boop
#Is Leif always like that?
boop
#Do you have any plans for me?
boop
#What is my "status"?
boop
#Do something else.
*goto mingle
#Approach Leif.
*if (crowd="sober")
*set crowd "semisober"
*else
*set crowd "drunk"
*hide_reuse globally
You leave Erland to his thoughts ,ignoring the laughter that filters
through the air as you search for your target. You spot him leaning
against the wall, sending a group of particular rowdy warriors out the
door. His eyes then scan the room and land on yours, rubbing a hand
across his graying stubble
*if (Leifrep<50)
He sneers at you and turns away to find some other form of
entertainment. It seems he will dislike you for a very long time if
you don't step up your game soon.
*goto mingle
*else
He jerks his head at you, a subtle invitation. You cautiously trot
over, watching him take a wet cloth from a waiting servant. He wipes
down his hands and runs the cloth through his hair. Once you get
within ear shot he throws the cloth at the servant and shoos her off.
He pats the wall next to him, continuing to style his short hair back
into a slicked undercut. You lean up against the wall next to
him and watch. He motions for you to speak.
*choice
#Is this your bath?
boop
#Who is Brynolf?
boop
#What's your story?
boop
#Do you and Erland have specific plans for the war?
boop
#I notice you only have paid servants.
boop
#Do something else.
*goto mingle
#Mingle with the others.
*hide_reuse globally
*if (crowd="semisober")
boop
*if (crowd="sober")
boop
*else
boop
sorry for the long post, im genuinely curious as to why it refuses to work. I thought Id post it b4 going to bed.Feel free to play with the code