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.
Wow ! Thank you very much !
Well i did not understand what was the purpose of the StripOnlyUnequip apparently, thank you too for these explainations btw.
Wow ! Thank you very much !
Well i did not understand what was the purpose of the StripOnlyUnequip apparently, thank you too for these explainations btw.
Being able to pull off strategies like this is the main reason I love this game so much. Idol of the Believer combines incredibly well with juicing and makes NPCs infighting so much easier without the need to use the Sexy/Weak strat (the most effective and safest way to have NPCs fight among them in SURVIVAL mod).
simply rename
Mod.json
to
_ModInfo.json
And then use @umm=true
Of course text_flags in names still there.
I found that its usable. But new mod manager need rename json file to work.
simply rename
Mod.json
to
_ModInfo.json
And then use @umm=true
Of course text_flags in names still there.
I found that its usable. But new mod manager need rename json file to work.
json file shouldn't be required, the mod should still work without it.
The Mod Manager UI just wouldn't have the mod version, mod description would be the contents of the info.txt file, mod name would be whatever the folder name is, etc.
Might be usable now, but if I kept it and tried to use the mod settings feature of the Mod Manager for the planned ingame mod config, the game would crash because the class is missing from the merge (surprised it hasn't already)
json file shouldn't be required, the mod should still work without it.
The Mod Manager UI just wouldn't have the mod version, mod description would be the contents of the info.txt file, mod name would be whatever the folder name is, etc.
Might be usable now, but if I kept it and tried to use the mod settings feature of the Mod Manager for the planned ingame mod config, the game would crash because the class is missing from the merge (surprised it hasn't already)
New Mod Manager makes textflags from mod by json data of mod.
If no json, $cheatmod:file:flag - doesnt work.
If you want to set (a)umm = true, then you should rename json file.
It neads to show version in game, and make description depend of language.
Two ways:
no json and (a)umm = false (or still rename json for description)
rename json and (a)umm = true
json file shouldn't be required, the mod should still work without it.
The Mod Manager UI just wouldn't have the mod version, mod description would be the contents of the info.txt file, mod name would be whatever the folder name is, etc.
Might be usable now, but if I kept it and tried to use the mod settings feature of the Mod Manager for the planned ingame mod config, the game would crash because the class is missing from the merge (surprised it hasn't already)
New Mod Manager makes textflags from mod by json data of mod.
If no json, $cheatmod:file:flag - doesnt work.
If you want to set (a)umm = true, then you should rename json file.
It neads to show version in game, and make description depend of language.
Before installing the mod:
Ensure that the old cheat mod and the dependency are not installed as they are not compatible with this mod and will result in crashes.
Now make sure you can answer yes to the following question:
Have you set the game path in NyxLauncher?
Have you launched the game to the title screen at least once?
After installing the mod:
Did your archive extractor of choice add a folder with the archive filename? <------- For this one, if you answered yes, the mod will NOT work regardless of if it shows up in nyxlauncher.
Notice:
Modular Cheat Mod does not nor has it ever provided the console. That feature is built into the game (See Data/Scripts/Frames/RVscript/520_YanflyF10.rb within the game files)
Important Information:
Any archive I share must be extracted how I say (if applicable), not into a folder with the archive name. The file/folder structure within is exactly how it needs to be for where it is to be extracted.
Known Issues:
Hive Hearts summoned on maps without H_BIOS storypoints crash the game. Only summon them if you wish to farm them on their actual maps. (If anyone knows how to recreate these storypoints in code if they don't exist in the current area, feel free to make and share a patch to the Summon feature)
Having all 3 Infinite Stats cheats enabled causes lag to a noticeable degree. (Configurable variant ONLY)
Some things don't change when changing languages. This is a problem with even the game itself, so restart after switching languages.
NoFriendlyFire mod causes Undefined method "+" on nilClass crash if Companion's projectiles hit player code is uncommented.
[Will NOT be changed] There is no default language fallback implemented in the mod, so if you use the MTL in the game itself, you MUST create the MTL folder in the mod too. This is by design as the mod relies on the language as set by the game. The MTL tool can be tricked into translating the mod, but the language the tool uses as a source is Google Translated from English and will be inaccurate. The only languages included in the mod that are confirmed accurate are English (being my native language) and Russian (see Credits spoiler)
Planned changes (lower number = highest priority):
Major optimization of the Infinite Stats cheats (Configurable variant ONLY) [On-hold]
Redesign the menu to match the pause menu (maybe even add a Cheats entry to the pause menu to free up a hotkey) [TBD]