MCsephiroth13
Member
Hey guys. I have a script that Zeriab made for me where it makes you only have a Weapons slot and a Shield slot. However, I kind of want the Accessory slot as well (I forgot I needed it too lol), so I was wondering how to change it so that your Equip screen will include only Weapons, Shield, and Accessory.
Thanks!
Code:
class Window_EquipRight < Window_Selectable
def refresh
self.contents.clear
@data = []
@data.push($data_weapons[@actor.weapon_id])
@data.push($data_armors[@actor.armor1_id])
@data.push($data_armors[@actor.armor4_id])
@item_max = @data.size
self.contents.font.color = system_color
self.contents.draw_text(4, 32 * 0, 92, 32, $data_system.words.weapon)
self.contents.draw_text(4, 32 * 1, 92, 32, $data_system.words.armor1)
draw_item_name(@data[0], 92, 32 * 0)
draw_item_name(@data[1], 92, 32 * 1)
end
end
Thanks!