DANIELSON'S PROFILE

I'm a hungarian guy. Well, not much to say here now...

Search

[RMVX] Expanded Item/Skill Description

Greetings!

Is there a way to make more lines of the item/skill description window (with add the "note" in there as well to make longer description) like in VX ACE? In that script I only used these for VX ACE:
class Window_Help < Window_Base

def initialize(line_number = 3)
super(0, 0, Graphics.width, fitting_height(line_number))
end

def set_item(item)
set_text(item ? item.description + "\n" + item.note : "")
end


With the changes I made above in VX ACE (and what I would like in VX) for example:
Pages: 1