ID:267664
 
Well, I created my own battle system. In it, when the user is within arms reach of an opponent, the user is displayed with a pop-up window which lists :Battle, Upgrades, Parts, Forfit

Say the user selects Battle for example, the user is then displayed with a list of battle moves and Cancel. What I was wondering is how would I make it so when the user selects Cancel, the user goes back to the main pop-up window displaying in a list:Battle, Upgrades, Parts, Forfit?

Thanks for any help given
The Conjuror
If the code is needed just ask
In response to The Conjuror
BUMP
use while loops, I cant remember any examples but it might be enough for someone to get one for you
In response to Maz
battling = 1
while(battling)
KillMonster()
switch(alert("Do you still want to battle?","Battle","Yes","No"))
if("No")
battling = 0

There's a quick example of a while loop.
In response to The Conjuror
Ok thanks I will try it and get back to you.
The Conjuror
In response to The Conjuror
Why dont you just, right before the code for the menu, put a name like

BattleMenu

or something..
then under the switch put

if("Cancel"
goto BattleMenu
In response to Jon88
WeLL, my battle system involves a user entering an area. So i wrote this

if("Cancel")
goto Battle

//Its not indented correctly as I used spaces.

But I get a jump failed error. Any ideas? And yes I know its risky using input and output in procs. Lol don't remind me.