+ Glasses 606 Posted June 6, 2014 (edited) Author: Mr Trivel Name: Expanded Actor Menu Version: 1.12a Version history: 1.00 - initial post 1.10 - Equipment no longer goes into Equipment Scene. You can equip items on the Menu Scene itself. 1.11 - Added compatibility with atleast Fomar0153's Custom Equipment Slots, should work with others, too. 1.12 - LEFT & RIGHT changes the selected actor, hence it's no longer Solo Actor Menu 1.12a - Code cleanup Features: Removes Status, Formation options from menu, also sets up the status screen so it displays HP, MP, EXP, Parameters, 6 Ex-Parameters and equipment. LEFT & RIGHT to browse through party actors. Screenshots: Instructions: (Plug; Play) || (Plug ; Customize; Play) Script: <Link: Pastebin> Blog: <Link: On blog> Edited June 8, 2014 by MrTrivel 2 Share this post Link to post Share on other sites
TheoAllen 830 Posted June 6, 2014 Cool! Quick question. Is this compatible with custom equip slots which allow you to have equip slots more than five? *added to MSL* Share this post Link to post Share on other sites
+ Glasses 606 Posted June 7, 2014 (edited) It wasn't. Now it is... atleast with Fomar0153's Custom Equipment Slots. Should be compatible with others, too, I think. Screenshot: P.S. I believe you put it in wrong MSL place. It's not Menu List attachment. Edited June 7, 2014 by MrTrivel Share this post Link to post Share on other sites
Demintika 63 Posted June 7, 2014 There is a method in Window_Base that you can use in any Window: #-------------------------------------------------------------------------- # * Get Parameter Change Color #-------------------------------------------------------------------------- def param_change_color(change) return power_up_color if change > 0 return power_down_color if change < 0 return normal_color end Your color changing part is so long... Share this post Link to post Share on other sites
+ Glasses 606 Posted June 7, 2014 Oh! Thanks for that. Apparently writing code @ 5AM doesn't help with it's cleanliness. Cleaned up the code a little, color part and removed some methods. Share this post Link to post Share on other sites