- Joined
- Jun 16, 2014
- Messages
- 260
- Reaction score
- 71
- Primarily Uses
Script can be found here. I tried the below snippet, but I can't seem to figure out the right configuration:
class Window_EquipStatus < Window_Base
#--------------------------------------------------------------------------
# overwrite method: draw_item
#--------------------------------------------------------------------------
alias without_draw_item draw_item unless $@
def draw_item(dx, dy, param_id)
return if param_id == 1
if param_id > 0
dy -= line_height
end
without_draw_item(dx, dy, param_id)
end
end
That's a snippet to remove MaxMP from his Ace Equip Engine, so I attempted changing the class to Window_ShopCommand < Window_HorzCommand, but it crashed, giving a.. 1 of 3 error, I believe? Sorry if this is a stupid question.
class Window_EquipStatus < Window_Base
#--------------------------------------------------------------------------
# overwrite method: draw_item
#--------------------------------------------------------------------------
alias without_draw_item draw_item unless $@
def draw_item(dx, dy, param_id)
return if param_id == 1
if param_id > 0
dy -= line_height
end
without_draw_item(dx, dy, param_id)
end
end
That's a snippet to remove MaxMP from his Ace Equip Engine, so I attempted changing the class to Window_ShopCommand < Window_HorzCommand, but it crashed, giving a.. 1 of 3 error, I believe? Sorry if this is a stupid question.
Last edited by a moderator:
