Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem
People who are having problems, check your load order.
Causes infinite looping of looting animations and doesn't loot, player won't move.
https://steamhost.cn/steamcommunity_com/sharedfiles/filedetails/?id=2836437471
LOG : General , 1655156901682> -----------------------------------------
STACK TRACE
-----------------------------------------
function: perform -- file: ISInventoryTransferAction.lua line # 309
ERROR: General , 1655156901682> ExceptionLogger.logException> Exception thrown java.lang.RuntimeException: attempted index: items of non-table: null at KahluaThread.tableget line:1689.
ERROR: General , 1655156901682> DebugLogStream.printException> Stack trace:
java.lang.RuntimeException: attempted index: items of non-table: null
at se.krka.kahlua.vm.KahluaThread.tableget(KahluaThread.java:1689)
at se.krka.kahlua.vm.KahluaThread.luaMainloop(KahluaThread.java:492)
let me buy you a beer
If you have a server, you have to do it twice in two lua files :
steamapps\common\ProjectZomboid\steamapps\workshop\content\108600\2488423408\mods\Instant Transfer 100\media\lua\client\InstantTransfer100.lua
and
steamapps\workshop\content\108600\2488423408\mods\Instant Transfer 100\media\lua\client\InstantTransfer100.lua
1. Open each file your favorite text editor(like nodepad, notepad++, vscode, sublime whatever)
<Your Steam Library>\steamapps\workshop\content\108600\2488423408\mods\Instant Transfer 100\media\lua\client\InstantTransfer100.lua
<Your Steam Library>\steamapps\workshop\content\108600\2488423408\mods\Dextrous Buff 100\media\lua\client\DextrousBuff100.lua
<Your Steam Library>\steamapps\workshop\content\108600\2488423408\mods\Dextrous Buff 80\media\lua\client\DextrousBuff80.lua
maybe you can see file start like this
require "TimedActions/ISBaseTimedAction"
function ISInventoryTransferAction:new (character, item, srcContainer, destContainer, time)
local o = {}
setmetatable(o, self)
self.__index = self
o.character = character;
o.item = item;
o.srcContainer = srcContainer;
o.destContainer = destContainer;
... ignore left file text
Add 2 line
o.dontAdd = false;
o.transactions = {};
Then each file looks like this
require "TimedActions/ISBaseTimedAction"
function ISInventoryTransferAction:new (character, item, srcContainer, destContainer, time)
local o = {}
setmetatable(o, self)
self.__index = self
o.character = character;
o.item = item;
o.dontAdd = false;
o.srcContainer = srcContainer;
o.destContainer = destContainer;
o.transactions = {};
... ignore left lines
I've only checked 'Instant Transfer 100',
But it will probably work for the rest as well.
I use it in mp on my own closed server. But for me only the instant action mod function. 80 and 100% faster with the dextrous trait doesnt function for me. I have the dextrous trait.
Im using the 2) Dextrous Trait Buff - 100% Faster
It was working just fine but then randomly stopped working.
My character is not hurt.
I dont know what to test :(