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

[Error - TalkAction Interface]

super23

Member
Joined
Dec 27, 2013
Messages
98
Reaction score
5
so guys i have this guild war event set up but i get this error while trying to start it,


[19/12/2018 18:40:48] [Error - TalkAction Interface]
[19/12/2018 18:40:48] data/talkactions/scripts/guildwar.lua:eek:nSay
[19/12/2018 18:40:48] Description:
[19/12/2018 18:40:48] data/talkactions/scripts/guildwar.lua:16: attempt to call global 'doSetItemActionId' (a nil value)
[19/12/2018 18:40:48] stack traceback:
[19/12/2018 18:40:48] data/talkactions/scripts/guildwar.lua:16: in function 'createTeleport'
[19/12/2018 18:40:48] data/talkactions/scripts/guildwar.lua:58: in function <data/talkactions/scripts/guildwar.lua:56>


Also when i kill them top guild monster, Theforgottenserver will crash when it dies

any help or suggestions will be apprieciated.
 
0.3.6 and im not too sure about the gwe system as im kinda new to this stuff, i can post the script im using if that would be any use?
 
ok so my my script in globalevents->scripts, is ,

function onThink(interval)
local color = {COLOR_RED,COLOR_RED,COLOR_RED,COLOR_RED,COLOR_RED}
local usetopguild = true
if usetopguild then
for _,tmpPlayer in ipairs(getPlayersOnline()) do
if getPlayerStorageValue(tmpPlayer, 5009) > os.time() then
doSendAnimatedText(getThingPos(tmpPlayer), "TOP GUILD", color[math.random(1,#color)])
doSendMagicEffect(getThingPos(tmpPlayer), 27)
end
end
end
return true
end

and when i say /startgw i get this error in theforgottenserver

[19/12/2018 18:40:48] [Error - TalkAction Interface]
[19/12/2018 18:40:48] data/talkactions/scripts/guildwar.lua:eek:nSay
[19/12/2018 18:40:48] Description:
[19/12/2018 18:40:48] data/talkactions/scripts/guildwar.lua:16: attempt to call global 'doSetItemActionId' (a nil value)
[19/12/2018 18:40:48] stack traceback:
[19/12/2018 18:40:48] data/talkactions/scripts/guildwar.lua:16: in function 'createTeleport'
[19/12/2018 18:40:48] data/talkactions/scripts/guildwar.lua:58: in function <data/talkactions/scripts/guildwar.lua:56>
 
Back
Top