• 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!

Is it work for TFS 1.0?

therrax

Member
Joined
Jul 12, 2012
Messages
262
Solutions
1
Reaction score
11
Is this script runs under TFS 1.0?:
http://otland.net/threads/grizzly-a...sks-more-real-tibia.159150/page-4#post1552537
I got this..
Code:
Lua Script Error: [Npc interface]
data/npc/scripts/killinginthenameof.lua:onCreatureSay
data/npc/scripts/killinginthenameof.lua:22: attempt to call global 'getTasksByPl
ayer' (a nil value)
stack traceback:
        [C]: in function 'getTasksByPlayer'
        data/npc/scripts/killinginthenameof.lua:22: in function 'callback'
        data/npc/lib/npcsystem/npchandler.lua:393: in function 'onCreatureSay'
        data/npc/scripts/killinginthenameof.lua:8: in function <data/npc/scripts
/killinginthenameof.lua:8>
Can smb share task system for tfs 1.0?(but not rl,no with bosses) Thanks for all :)
 
@Limos I add now and I have this:
Code:
Lua Script Error: [Npc interface]
data/npc/scripts/KillingInTheNameOf.lua:onCreatureSay
data/global.lua:1093: attempt to call global 'getCreatureStorage' (a nil value)
stack traceback:
        [C]: in function 'getCreatureStorage'
        data/global.lua:1093: in function 'getTasksByPlayer'
        data/npc/scripts/KillingInTheNameOf.lua:22: in function 'callback'
        data/npc/lib/npcsystem/npchandler.lua:393: in function 'onCreatureSay'
        data/npc/scripts/KillingInTheNameOf.lua:8: in function <data/npc/scripts
/KillingInTheNameOf.lua:8>
:(
 
Add this in global.lua or at the bottom of compat.lua.
Code:
getCreatureStorage = getPlayerStorageValue
doCreatureSetStorage = setPlayerStorageValue
 
Back
Top