sephiroth976
Member
Ok first of all im no scripter, i just wanted to create a simple edit to the skills/items window in battle to make them look better for my project.
I simply changed the size, position and opasity to make them fit my project, however it wont scroll down when i have more then 8 skills (only 8 skills fit in the window)
here is a pic to show you better what i mean:
http://img164.imageshack.us/img164/197/w00tnx1.th.png[/img]
So my question is this: how do you make it scroll down when you hit the bottom of the window?
Here is the edited code:
Again i have to say i know nothing about scripting, i only know how to edit very few things, so any help on this would be awesome!
P.S i did search and looked through several topics without any luck!
EDIT: Oh and i forgot to mention that the item menu works fine, it scrolls when it gets to the bottom its just the skills menu that wont.
I simply changed the size, position and opasity to make them fit my project, however it wont scroll down when i have more then 8 skills (only 8 skills fit in the window)
here is a pic to show you better what i mean:
http://img164.imageshack.us/img164/197/w00tnx1.th.png[/img]
So my question is this: how do you make it scroll down when you hit the bottom of the window?
Here is the edited code:
Code:
# Skills Menu
class Window_Skill < Window_Selectable
def initialize(actor)
super(0, 128, 640, 352)
@actor = actor
@column_max = 2
refresh
self.index = 0
if $game_temp.in_battle
self.y = 320
self.height = 160
self.back_opacity = 255
self.z=225
end
end
end
# Items Menu
class Window_Item < Window_Selectable
def initialize
super(0, 64, 640, 416)
@column_max = 2
refresh
self.index = 0
if $game_temp.in_battle
self.y = 320
self.height = 160
self.back_opacity = 255
self.z=225
end
end
end
Again i have to say i know nothing about scripting, i only know how to edit very few things, so any help on this would be awesome!
P.S i did search and looked through several topics without any luck!
EDIT: Oh and i forgot to mention that the item menu works fine, it scrolls when it gets to the bottom its just the skills menu that wont.