Search found 7 matches

by daoxin
Fri Apr 19, 2019 2:00 pm
Forum: Creator Discussion
Topic: Multiple choices but a bit unconventional
Replies: 11
Views: 1137

Re: Multiple choices but a bit unconventional

Oh my gosh I finally have solved the issue!!!! So for anyone else in the future are curious and want the solution here how I did it: menu: "A+B": $ Pisces_point += 1 "blah" "B+C": $ Leo_point += 1 "blah" "A+C": $ Virgo_point += 1 "blah" &qu...
by daoxin
Fri Apr 19, 2019 12:54 pm
Forum: Creator Discussion
Topic: Multiple choices but a bit unconventional
Replies: 11
Views: 1137

Re: Multiple choices but a bit unconventional

Sorry, I kind of don't understand the hint you are trying to give me for my situation. Should I have used the if statement for the fourth choice to appear on the last choices of options when that certain condition is met or should I use true and false statements to bring that part out? Or maybe I wa...
by daoxin
Fri Apr 19, 2019 9:51 am
Forum: Creator Discussion
Topic: Multiple choices but a bit unconventional
Replies: 11
Views: 1137

Re: Multiple choices but a bit unconventional

Yeah, I have the story is written out and everything but I just sort of need help with my coding part that I am struggling with. I have everything ready to go and working just need that option to appear when conditions are met to appear another option. The choices I already put up and the coding I h...
by daoxin
Thu Apr 18, 2019 10:00 pm
Forum: Creator Discussion
Topic: Multiple choices but a bit unconventional
Replies: 11
Views: 1137

Re: Multiple choices but a bit unconventional

Am I missing something but would a flowchart be most useful here? Yeah sure would take a pic of it. I have it on a whiteboard but not home at the moment. But this is what I have choice one: A+B or A+C choice two: B+C or B+A Choice three: C+A or B+C choice four: A+B or B+C or C+A or A+B+C so each le...
by daoxin
Thu Apr 18, 2019 9:50 pm
Forum: Creator Discussion
Topic: Multiple choices but a bit unconventional
Replies: 11
Views: 1137

Re: Multiple choices but a bit unconventional

I usually use an else statement vs. endless ifs. (That way there's always a default.) So something like: if a_point >= 2: jump ending1 elif b_point >=2: jump ending2 elif c_point >=2: jump ending3 else: jump ending4 This way, even if you somehow flub and there's no way for the player to get over 2 ...
by daoxin
Thu Apr 18, 2019 9:15 am
Forum: Creator Discussion
Topic: Multiple choices but a bit unconventional
Replies: 11
Views: 1137

Re: Multiple choices but a bit unconventional

Rather than True/False, just use numbers. When they pick something with A, then a_points go up by one, if they pick something with B, then b_points go up by one. If they pick something with C, then c_points go up by one. If A, B, and C are the same? then if that fourth choice. And so on. so sort of...
by daoxin
Wed Apr 17, 2019 7:52 pm
Forum: Creator Discussion
Topic: Multiple choices but a bit unconventional
Replies: 11
Views: 1137

Multiple choices but a bit unconventional

Hey there. I am making a VN that is a bit different from its character and ending. Want to make a game that has 3 characters but 4 endings. I tried approaching this challenge multiple times but always find myself stump and a bit lost. Basically, this what I am doing. Each choice has two characters a...