StripOnlyUnequip is a patch to prevent combat stripped items from dropping on the ground. Those items then stay in Lona's inventory instead.
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
to this:
Code:
module CheatUtils
def self.unequipall(force)
if self.ingame?
$game_player.actor.equip_slots.size.times do |i|
unless force
next if i == 7
end
$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
This should make it skip the hair unless Shift is held while pressing F3.