- Joined
- May 13, 2016
- Messages
- 34
- Reaction score
- 4
- First Language
- English
- Primarily Uses
- RMMV
I'm wanting to add more types of slots than just dual wield. What I'm specifically wanting to do is add additional presets of equipment slots that just two in Fomar0153's Custom Equipment Slots Script. Basically adding more than two sets of this:
class Game_Actor < Game_Battler
#--------------------------------------------------------------------------
# ● Rewrites equip_slots
#--------------------------------------------------------------------------
# Edit here to change what slots are available to your characters
# 0 - Weapon
# 1 - Shield
# 2 - Head
# 3 - Body
# 4 - Accessory
# 5+ a custom slot
def equip_slots
return [0,0,2,3,6,5,4,4,7] if dual_wield?
return [0,1,2,3,6,5,4,4,7]
end
end
Or just how would I make it possible for additional options for equipment slot presets other than the two listed in this set of code?
class Game_Actor < Game_Battler
#--------------------------------------------------------------------------
# ● Rewrites equip_slots
#--------------------------------------------------------------------------
# Edit here to change what slots are available to your characters
# 0 - Weapon
# 1 - Shield
# 2 - Head
# 3 - Body
# 4 - Accessory
# 5+ a custom slot
def equip_slots
return [0,0,2,3,6,5,4,4,7] if dual_wield?
return [0,1,2,3,6,5,4,4,7]
end
end
Or just how would I make it possible for additional options for equipment slot presets other than the two listed in this set of code?
Last edited by a moderator:
