- Sep 25, 2018
- 2,309
- 5,010
I found this #9,654 explaining the situation, but i found out that the hat is removable, but the gloves and tie are tied to the rest of the clothes.Thankyou but besides the RJ Cheats, Is there a way to manually edits .js or thing that can removes her hat/gloves/tie, Just curious?
Thankyou in advance.
Open up "RemtairyKarryn.js" and look for "Game_Actor.prototype.putOnGlovesAndHat = function" and you should find:
JavaScript:
Game_Actor.prototype.putOnGlovesAndHat = function() {
this._wearingGlovesAndHat = true;
//$gameSwitches.setValue(SWITCH_IS_NAKED_NO_HATS_OR_GLOVES_ID, false);
this.setHasTachieHat(true);
};
JavaScript:
Game_Actor.prototype.putOnGlovesAndHat = function() {
this._wearingGlovesAndHat = true;
//$gameSwitches.setValue(SWITCH_IS_NAKED_NO_HATS_OR_GLOVES_ID, false);
this.setHasTachieHat(false);
};
Only way i can think of on removing the gloves and tie would be to manually edit the art assets and i've no experience with that.