Lionheart 2 Posted November 22, 2012 I am sorry, I don't really know what you mean. Can you show a printscreen? I will do a FAQ later showing how you can add commands etc Ok ... wait for your news, and the background of the status deluxe? Share this post Link to post Share on other sites
Lecode 34 Posted November 22, 2012 By selecting 'skills' in the menu, for example, the cursor moves to the status window, and we have the ability to display the skill window for a particular character. But, how to do the same with custom scene ? Share this post Link to post Share on other sites
Nicke 151 Posted November 22, 2012 Oh, currently that only works with skills, equip and status even if you set "personal" to true. I can patch that so you can use it with a custom menu as well. Share this post Link to post Share on other sites
Snake 4 Posted November 22, 2012 Hey... Ehm... Am i just too dumb or just blind? You said you released a update that fixes the crashes i posted right? With the equipment and everything...? Because in the first post it's still 1.0b. The exact same script i grabbed and tested. Or did i misunderstood something? o.o Share this post Link to post Share on other sites
Levi Stepp 12 Posted November 22, 2012 (edited) Hey... Ehm... Am i just too dumb or just blind? You said you released a update that fixes the crashes i posted right? With the equipment and everything...? Because in the first post it's still 1.0b. The exact same script i grabbed and tested. Or did i misunderstood something? o.o They say the same thing. Just grab his Core, and the Menu Script again, they work now. You just can't add custom commands yet. Edited November 22, 2012 by KoutaStepp Share this post Link to post Share on other sites
Snake 4 Posted November 23, 2012 Hey... Ehm... Am i just too dumb or just blind? You said you released a update that fixes the crashes i posted right? With the equipment and everything...? Because in the first post it's still 1.0b. The exact same script i grabbed and tested. Or did i misunderstood something? o.o They say the same thing. Just grab his Core, and the Menu Script again, they work now. You just can't add custom commands yet. Thx, it works now Share this post Link to post Share on other sites
andyvrc_RPGMAKERKASKUS 0 Posted November 24, 2012 wow i'ts a better script i found here for menu design=)) thx. Share this post Link to post Share on other sites
Choco-Elliot Wyvern 25 Posted November 24, 2012 This really is a beautiful scripts.. I just found a visual error The levels overlap with the class names if its a long class...... Share this post Link to post Share on other sites
Levi Stepp 12 Posted November 24, 2012 This really is a beautiful scripts.. I just found a visual error The levels overlap with the class names if its a long class...... How did you add the custom commands? or do they just appear, but don't work? and you can actually fix that by finding the Height for what draws the Levels, and move it up some. Share this post Link to post Share on other sites
Choco-Elliot Wyvern 25 Posted November 24, 2012 (edited) Actually.....Its CCSA's Menu Organizer script... They just appear and yeah they don't work...:(/> Okay yeah I'll check out the heights...And Nicals if possible can you make your script compatible with CCSA's menu organizer script?? I'll give a link..I just need to find the script...... EDIT:Link to Menu Organizer Here Edited November 24, 2012 by Elliot Wyvern Share this post Link to post Share on other sites
Levi Stepp 12 Posted November 24, 2012 (edited) Actually.....Its CCSA's Menu Organizer script... They just appear and yeah they don't work... :(/>/> Okay yeah I'll check out the heights...And Nicals if possible can you make your script compatible with CCSA's menu organizer script?? I'll give a link..I just need to find the script...... EDIT:Link to Menu Organizer Here I kind of figured, because I got stuff showing up too, however they do nothing when you click them. ----On Topic, Has anyone notice that when you leave the Menu, or return to the title screen. You see the "Fog" background for like 1 second as if it has a delay? Edited November 24, 2012 by KoutaStepp Share this post Link to post Share on other sites
Choco-Elliot Wyvern 25 Posted November 24, 2012 (edited) Okay....Never noticed it... I'll check it out.. EDIT:Oh I get what you mean...It's almost like a flashing effect.. Edited November 24, 2012 by Elliot Wyvern Share this post Link to post Share on other sites
Levi Stepp 12 Posted November 24, 2012 Okay....Never noticed it... I'll check it out.. EDIT:Oh I get what you mean...It's almost like a flashing effect.. Yeah, it bothers me. lol... I am one of those people that needs things to feel 'perfect' xD I tried fixing it, but I don't know how without disabling the Fog effects, but that will make the menu too plain. Share this post Link to post Share on other sites
Nicke 151 Posted November 24, 2012 I am actually working on the next patch and that glitch is already fixed Share this post Link to post Share on other sites
Choco-Elliot Wyvern 25 Posted November 24, 2012 Oh okay that's great Thanks, great script by the way Share this post Link to post Share on other sites
Nicke 151 Posted November 24, 2012 Thank you. What seems to be the problem with adding custom commands? Both load and title is infact a custom command so, and they work as intend. Can someone explain? Share this post Link to post Share on other sites
Choco-Elliot Wyvern 25 Posted November 24, 2012 Well in my case I'm using a lot of custom commands(check my pic) and none of them seem to work... How do you add Custom Commands? Share this post Link to post Share on other sites
Nicke 151 Posted November 24, 2012 Alright, lets say you want to add my attribute script to the menu. Simply do the following in the settings: # MENU_LIST: # Name, Icon_index and custom_scene are optional. # If name is empty it will use the corresponding symbol as name instead. # symbol => [name, description, icon_index, enabled, personal, custom_scene] MENU_LIST = { :item => ["", "Browse through your acquired items.", 4148, true, true], :equip => ["Equipment", "Change your equipment.", 4145, true, true], :skill => ["Spells", "Manage your available skills.", 4147, true, true], :status => ["Stats", "See the current status of the hero.", 4136, true, true], :formation => ["", "Change the formation of the party.", 4134, true, false], :save => ["", "Record your progress.", 4139, true, false], :attribute => ["", "Distribute stats.", 4140, true, false, Scene_Attribute], :load => ["", "Load your saved progress.", 4165, true, false, Scene_Load], :game_end => ["Quit", "Exit the program.", 4162, true, false], :title => ["", "Return to title.", 4133, true, false, Scene_Title] } # Don't remove this line! This little change will add the attribute scene to the menu. Share this post Link to post Share on other sites
Choco-Elliot Wyvern 25 Posted November 24, 2012 mmmm.....I'll try that..And I think I get what you mean.. I'll post here if I need any help Thanks for the helping us programming newbs lol.. Share this post Link to post Share on other sites
Nicke 151 Posted November 25, 2012 No problem. Released 1.0c. See OP for more details. Grab the script again and the core script. Share this post Link to post Share on other sites
Choco-Elliot Wyvern 25 Posted November 25, 2012 (edited) I can't figure out how to do it...Where do I find the scene thing? But on one script I did find it (The Person was cool enough to put it in the description) When I tried to test it I recieved an error : Honestly I didn't touch that line..... What happened was I wanted to test it but I still had the original Menu Organiser from CCSA so no changes were made...I deleted the script and then the error popped up...I can figure out how to do it...Where do I find the scene thing?But on one script I did find it (The Person was cool enough to put it in the description) EDIT:Just saying I tested with your new version too and I received the same error even if I haven't touched the script at all... I might be wrong but it may be conflicting with CSCA's Menu Theme Script...I does add a song to the menu....It is the only script that I have that changes the menu in some way... Edited November 25, 2012 by Elliot Wyvern Share this post Link to post Share on other sites
Levi Stepp 12 Posted November 25, 2012 I can't figure out how to do it...Where do I find the scene thing? But on one script I did find it (The Person was cool enough to put it in the description) When I tried to test it I recieved an error : Honestly I didn't touch that line..... What happened was I wanted to test it but I still had the original Menu Organiser from CCSA so no changes were made...I deleted the script and then the error popped up...I can figure out how to do it...Where do I find the scene thing?But on one script I did find it (The Person was cool enough to put it in the description) EDIT:Just saying I tested with your new version too and I received the same error even if I haven't touched the script at all... I might be wrong but it may be conflicting with CSCA's Menu Theme Script...I does add a song to the menu....It is the only script that I have that changes the menu in some way... Have you tried placing the Menu Theme Script above the Delux Script, and then below after? Both ways? I'll try it out tomorrow to see if there is a problem or not. Share this post Link to post Share on other sites
Choco-Elliot Wyvern 25 Posted November 25, 2012 (edited) Oh.....I haven't tried it yet lol... I'll try it in a sec oh and Nicals it turns out your script isn't compatible with Yanfly's Victory Aftermath and Yanfly's TP Manager How a menu script conflicts with a battle script I don't know lol Important Edit:So I switched the two around (It was Menu Delux first then Menu Theme) and I got into the menu but no the song of the map I was on was playing and when I exited the menu this error came up: Edit2 :Okay I just tested the two scripts on a blank game and the outcome is the same...This script is conflicting with the menu theme ... Edited November 25, 2012 by Elliot Wyvern Share this post Link to post Share on other sites
Nicke 151 Posted November 25, 2012 Both Yanfly scripts and CSCA Menu Theme works for me so the problem must be in your end. Make sure you put CSCA Menu Theme below XS - Menu Delux. If you still having problem I might do a patch to add that feature CSCA Menu Theme have to my script. Share this post Link to post Share on other sites
Choco-Elliot Wyvern 25 Posted November 25, 2012 (edited) Mmmmm...Strange...I'll test them all on a blank project.. EDIT:Oh Yanfly's scripts just needed to be under it :D/> and the theme to :)/> But When I wanted to enter the equip section I got this error And I tried testing spells and stats too and I get the same error the only thing that changed it the scene its from ex. Scene_Equip , Scene_Skill etc. I've only got yanfly's two scripts,the menu theme and and menu delux Edited November 25, 2012 by Elliot Wyvern Share this post Link to post Share on other sites