[RMVX ACE] SIMPLE MENU

Posts

Pages: 1
Coonie
We do not allow ban evading.
0
In rpg maker vx ace i want to take out the item menu options like key items and weapons. ive tried different scripts online but but none of them worked could someone please help me!
Marrend
Guardian of the Description Thread
21806
I'm figuring there would probably need to be an edit in Window_ItemCategory, I'd say in the "make_command_list function...

class Window_ItemCategory < Window_HorzCommand
  def make_command_list
    add_command(Vocab::item,     :item)
    #add_command(Vocab::weapon,   :weapon)
    add_command(Vocab::armor,    :armor)
    #add_command(Vocab::key_item, :key_item)
  end
  
  def col_max
    #return 4
    return 2
  end
end


...like so to remove the "Weapons" and "Key Items" categories from the item menu. The edit to the "col_max" function should center the remaining two choices.
Mjshi's Basic Non-Combat Menu script allows you to do this though what Marrend said works as well.
Coonie
We do not allow ban evading.
0
author=Marrend
I'm figuring there would probably need to be an edit in Window_ItemCategory, I'd say in the "make_command_list function...

class Window_ItemCategory < Window_HorzCommand
  def make_command_list
    add_command(Vocab::item,     :item)
    #add_command(Vocab::weapon,   :weapon)
    add_command(Vocab::armor,    :armor)
    #add_command(Vocab::key_item, :key_item)
  end
  
  def col_max
    #return 4
    return 2
  end
end


...like so to remove the "Weapons" and "Key Items" categories from the item menu. The edit to the "col_max" function should center the remaining two choices.
author=Marrend
I'm figuring there would probably need to be an edit in Window_ItemCategory, I'd say in the "make_command_list function...

class Window_ItemCategory < Window_HorzCommand
  def make_command_list
    add_command(Vocab::item,     :item)
    #add_command(Vocab::weapon,   :weapon)
    add_command(Vocab::armor,    :armor)
    #add_command(Vocab::key_item, :key_item)
  end
  
  def col_max
    #return 4
    return 2
  end
end


...like so to remove the "Weapons" and "Key Items" categories from the item menu. The edit to the "col_max" function should center the remaining two choices.
wow thanks!!! It works!
Pages: 1