I've finally gotten my game to add a "Bonus" button upon completion (through use of "$ persistent.end = True" at the end, and "if persistent.end: textbutton _("Bonus") action ui.jumps("bonus")" in the main_menu section of the screens.rpy page).
My problem is that whenever the Bonus button is clicked, it doesn't clear away the main menu...all the text just appears right on top of it. I figure that's because it's jumping to a label - not a screen, but even when I tried to do "show image" to cover up the main menu, it didn't work. I'm sure there's a better way to do this...I'm just confused on where to go from here.
I'm trying to make my Bonus room similar to the one in TCAST...page comes up, and you choose what to read from a menu. I know how to do that part. It's creating the page that contains that menu that's the issue.
Thanks for your help!
Edit: Also, what's the command for returning to the main menu? I'd like one of the last choices (something like "Back to Main") to do a "return."