im doing a thing rn and it has a section where you can select two options (and it's like a yes or no path) however i havent seen any tutorial on how to do this so any help is appreciated
im doing a thing rn and it has a section where you can select two options (and it's like a yes or no path) however i havent seen any tutorial on how to do this so any help is appreciated
Response to how can i make a two path thing in a flash game? 2023-04-23 14:47:09 (edited 2023-04-23 14:47:16)
You mean like a visual novel? You can keep track of choices the user has made and then redirect them to different scenes depending on those choices. Take a look at Ren'py, if you want to try and create visual novels yourself. There's also other engines like AGS, Visionaire studio etc. that allow you to create more generic point-and-click games that can also incorporate such elements.
Slint approves of me! | "This is Newgrounds.com, not Disney.com" - WadeFulp
"Sit look rub panda" - Alan Davies
At 4/22/23 08:25 PM, Laxy-2077 wrote: im doing a thing rn and it has a section where you can select two options (and it's like a yes or no path) however i havent seen any tutorial on how to do this so any help is appreciated
your game will then literally consist of this code:
stop(); button1.addEventListener(MouseEvent.CLICK, click1); function click1 (e:MouseEvent){ gotoAndStop(2); }