I have a page with class descriptions (part of a tutorial to help new players pick which class they want). I have created a ‘descriptions’ scene and will fit all of the different class description in that one text file.
I figured I can go about it a couple of ways. First would be to *goto_scene descriptions - which did work, but so far I only have the one description of one class. I have a variable set knightcounter = false at the top of startup. When they click to view the description of the Knight class, it sets knightcounter = true and then does *goto_scene descriptions. At the top of descriptions I have an if statement of:
*if knightcounter = true
*goto knightdescription (which is the label)
It functions right and at the end of the description, I set knightcounter to false again so they can return to the thing later if they want.
But, when they go back it takes them to the top of startup. I set an if statement in startup (yet another variable) to send them back to the appropriate class selection label.
I figured that’s too many variables for one-time uses and makes the code look like a mess. So, in the intro it said I can use *gosub_scene scene label to have it go to a specific label in another scene and then use *return to go back to the originating label.
But, it’s not working at all. When I get to the part where it’s supposed to take them to the descriptions scene to view the Knight’s information, I get this error:
"non-existent command ‘gosub_scene’ "
What gives? Cause now it won’t even load up the Knights page.
**************************************************************
Seperate question. I’m using the online IDE, which is absolutely fantastic. I got there from a link submitted by someone else. I can download the compiled file as html, but it doesn’t allow me to download the separate scenes.
I’m afraid to close off of the website out of fear it will lose all the information.
- Where is my work being saved when I use the IDE?
- Is there an offline version of that IDE that I can use that will simply save the scenes and such in the appropriate folder.
- If I close off the site, will my stuff be there when I come back?