StripOnlyUnequip is a patch to prevent combat stripped items from dropping on the ground. Those items then stay in Lona's inventory instead.I understand, but what is the purpose of StripOnlyUnequip, there is a shortcut or a way to use it ingame ?
Is it something i can use to undress Lona quickly without having to undress her manually ?
As such, there is no shortcut nor a way to use it ingame. It is used automatically as it overrides the normal function.
If you must, change this in UnequipItems:
Code:
module CheatUtils
def self.unequipall(force)
if self.ingame?
$game_player.actor.equip_slots.size.times do |i|
$game_player.actor.change_equip(i, nil) if $game_player.actor.equip_change_ok?(i) or force
SndLib.sound_equip_armor
end
end
end
end
Code:
module CheatUtils
def self.unequipall(force)
if self.ingame?
$game_player.actor.equip_slots.size.times do |i|
next if i == 7 and force == false
$game_player.actor.change_equip(i, nil) if $game_player.actor.equip_change_ok?(i) or force
SndLib.sound_equip_armor
end
end
end
end
Last edited: