- Joined
- Mar 18, 2015
- Messages
- 87
- Reaction score
- 6
- First Language
- English
- Primarily Uses
- RMMV
I want to make a better title menu (or whats it called) than what ace normally has, but Im not super man.
Example:
Example:
am i not in it?Yes, it's possible, but you will need to script it or have someone do it for you. Might ask in the script request section.
Yep, you are, lol! And apparently I need to go to bed!am i not in it?
I like this! would I be able to remove the new game option above continue, though?I made a Zelda save system a while ago, you can try using it:
https://github.com/Hudell/scripts/blob/master/standalone/zelda_save_system/zelda_save_system.rb
Let me know if you need anything different on it.
Sure, just add this right before the last "end" on that script.I like this! would I be able to remove the new game option above continue, though?
class Window_TitleCommand < Window_Command def continue_enabled return true end def make_command_list add_command(Vocab::continue, :continue, continue_enabled) add_command(Vocab::shutdown, :shutdown) endend
You can use a Skip Title Screen script and use Show/Move Picture to create your own custom title screen.Show/Move Picture are event commands. You actually need to be IN a game to use event commands. They're not available on the title screen.
Sounds like a great idea and I'll get into it when I learn more but for now...You can use a Skip Title Screen script and use Show/Move Picture to create your own custom title screen.
Just what I needed, but a few bugs.Sure, just add this right before the last "end" on that script.
I fixed the highlight problem, but the music will be a little trickier. I'll add it to my "to do list" and I'll fix it once I'm done with some other stuff.Sounds like a great idea and I'll get into it when I learn more but for now...
Just what I needed, but a few bugs.
copy save data and delete save file dont get highlighted when I choose them and when I start the game the theme music starts over my normal game music
sorry if im being picky, I dont want you to fix it if you dont want to
I may be able to change the music with events for now so it may not be a problem.I fixed the highlight problem, but the music will be a little trickier. I'll add it to my "to do list" and I'll fix it once I'm done with some other stuff.
You can get the updated version on the same url:
https://github.com/Hudell/scripts/blob/master/standalone/zelda_save_system/zelda_save_system.rb