0 of 0

File information

Last updated

Original upload

Created by

ZebraFish

Uploaded by

zebrafisk

Virus scan

Safe to use

Tags for this mod

Documentation

Readme

View as plain text

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.

The mod modifies the playerWitcher.ws file and as such is incompatible with any other mod that edits this file.

Use with another mod:
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/new if in doubt.