Vexus
Mar 27 2012, 08:50 AM
Hi, I've been trying for a couple of hours now but can't seem to find where I should edit to lower the opacity of scene equip window.
I tried searching on some tutorials or maybe some other equip script I could get an idea from but no clue.
Anyone would mind helping me here?
Thanks
brewmeister
Mar 27 2012, 12:13 PM
At the top of Scene_Equip, for each window that gets created, add the folowing line after the creation. (with .new at the end)
@help_window = Window_Help.new
@help_window.opacity = 0
@left_window = Window_EquipLeft.new(@actor)
@left_window.opacity = 0
etc..