Okay. First of all, this was just for fun, nothing fancy, also the first thing I've ever done with scripting. I just wanted something very simple, it's only about 10- 20 lines. Please, don't get harsh, this was just a first-try with the Scite editor thing.
Okay, now I just wanted to make an event in rmxp, asking you for gender and then age. If you chose to be a "Boy" then I used a call script to type:
(Note that I also tried doing it with "var_girl")
gen_girl = false
If u chose to be a girl, it'd become true.
Then afterwards, you're asked if you're old or young. Simple too:
You choose to be "Old" I call script and it says:
age_old = true
If you chose to be young, then it'd be
age_young = true
But enough talk, I get an error. The whole script:
if age_old == true
then age_young = false
elsif age_old == false
then age_young= true
end
end
# Theres about 10 lines of comments here XD...
if age_old == true
then p "I am an old idiot"
elsif age_young == true
if gen_girl == false
then p "I am a young boy"
elsif gen_girl == true
then p "I am a young girl"
end
end
end
The error is on line 6. I called the script "Age_Gender"
Tell me if you need more info about it, 'cuz I'll try to get it then.