00:00
00:00
Newgrounds Background Image Theme

Someone gifted MetalSlayer69 supporter status!

We need you on the team, too.

Support Newgrounds and get tons of perks for just $2.99!

Create a Free Account and then..

Become a Supporter!

how can i make a two path thing in a flash game?

487 Views | 2 Replies
New Topic Respond to this Topic

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


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

BBS Signature

Response to how can i make a two path thing in a flash game? 2023-04-24 02:38:58


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);
}

I am ready to program in as3/as2 or website