 
 So I’ve made a silly lil script i call Waffles & Bacon. It’s mainly just a throw away script I’ve made to help me get a feel for ScriptCard. Problem is, I’ve hit a brick wall and I’m not entirely sure what I’ve done wrong.     for the script, ideally it will give a drop down menu of choices between Waffles 1-4 and Bacon 1-2. After you’ve picked one, a statement including that choice will be spat out  i.e. “Boy oh boy, i sure do love Waffles 3”  Afterwards, it should be going through conditional statements to see which choice you’ve made to spit out a secondary statement confirming your love for the choice.  i.e “Yup, Waffles 3 is the best”     the first half works like a charm, but when it comes time to output a secondary output based on your choice, it just defaults to the first option of “Yup. Waffle 1 is the best.”  !scriptcard {{
  --#title|Waffle Bacon Test
  --#titlecardbackground|#1220b5
  --#emoteBackground|#0e1996
  --#emoteFontSize|11px
  --#emoteFontColor|#1ff8ff
  --#emoteText|the options are Waffle 1-4 and Bacon 1-2.
  --&BWChoice|?{Bacon or Waffles?|Waffle 1|Waffle 2|Waffle 3|Waffle 4|Bacon 1|Bacon 2}
  --+|Boy oh boy, i sure do love [&BWChoice].
	
  --?[&BWChoice] -inc Waffle 1|W1
  --?[&BWChoice] -inc Waffle 2|W2
  --?[&BWChoice] -inc Waffle 3|W3
  --?[&BWChoice] -inc Waffle 4|W4
  --?[&BWChoice] -inc Bacon 1|B1
  --?[&BWChoice] -inc Bacon 2|B2
  --:W1|[W1]
  --+|Yup, Waffle 1 is the best.
  --^StirFried|
	
  --:W2|[W2]
  --+|Yup, Waffle 2 is the best.
  --^StirFried|
  --:W3|[W3]
  --+|Yup, Waffle 3 is the best.
  --^StirFried|
  --:W4|[W4]
  --+|Yup, Waffle 4 is the best.
  --^StirFried|
  --:B1|[B1]
  --+|Yup, Bacon 1 is the best.
  --^StirFried|
  --:B2|[B2]
  --+|Yup, Bacon 2 is the best.
  --^StirFried|
  --:StirFried|
  --X|
}}      
 
				
			 
