About this mod
Refills alchemical items such as potions and bombs when meditating, even without alchohol in inventory.
- Permissions and credits
- Donations
There is nothing worse than being in the middle of a dungeon without any more potions, and no alcohol to refill with.
Thats where this mod comes in handy. The mod is intended for use on higher difficulty settings where potions are an absolute necessity. It will allow you to refill your much needed alchemical items without having any alcohol in your inventory.
Installation
Steam: Move folder "modAutoRefill" into C:\Programm Files (x86)\Steam\steamapps\common\The Witcher 3 Wild Hunt\mods
GOG Galaxy: Move folder "modAutoRefill" into C:\Programm Files (x86)\GalaxyClient\Games\The Witcher 3 Wild Hunt\mods
Change Steam & GOG Galaxy installation paths according to your setup.
Uninstall
Delete folder "modAutoRefill" from <InstallDir>\mods
Does this mod make the game easier?
In a sense yes, though i would say it removes an element of frustration. You do have some more money though, as you no longer need to buy alcohol.
Is it cheating?
Yes. The mod adds an Alcohest potion to your inventory on meditation, as long as you don't have any alcohol already.
Compatibility
The mod modifies the playerWitcher.ws file and as such is incompatible with any other mod that edits this file.
Merge with another mod:
To get around any comptibility issues you can add the mods ccode to the mod you want it to work with. To do this open the file playerwitcher.ws in your prefered text editor and add the following to the Meditate() function just under "var medstate : W3PlayerWitcherStateMeditation;"
var alcos : array<SItemUniqueId>;
inv = GetInventory();
alcos = inv.GetItemsByTag(theGame.params.TAG_ALCHEMY_REFILL_ALCO);
if(alcos.Size() == 0)
{
inv.AddAnItem('Alcohest', 1, true ,true);
}
See http://imgur.com/gallery/ZkfcTtK if in doubt.