• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Windows Zombie Event, talkaction help.

kozmo

Member
Joined
Jan 30, 2009
Messages
443
Solutions
2
Reaction score
23
This is the error i am getting.

Lua Script Error: [TalkAction Interface]
data/talkactions/scripts/zombie/onsay.lua:eek:nSay

data/talkactions/scripts/zombie/onsay.lua:2: attempt to call global 'getStorage'
<a nil value>
stack traceback:
data/talkactions/scripts/zombie/onsay.lua:2: in function <data/talkactions/scripts/zombie/onsay.lua:1>
 
Last edited:
Depending on your tfs version replace getStorage(key) with:
Code:
Game.getStorageValue(key)
or
Code:
getGlobalStorageValue(key)
 
Back
Top