I was wondering if someone could please make a really quick script so that none of the actors can unequip their weapons. They can still switch between different weapons, but they always have some weapon equipped.
Thanks!
I think that this will work. I didn't actually try it, so let me know.
class Game_Actor
alias no_unequip equip
def equip(equip_type, id)
if (equip_type == 0) && [nil, 0].include?(id)
return
end
no_unequip(equip_type, id)
end
end
Thanks, it works perfectly! :^_^':