• 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!
  • 2026 staff recruitment is open! Check it out and consider applying!

Solved Demon Helmet Chest Errors

Ashbringer

Almighty Ashe
Joined
Dec 24, 2011
Messages
334
Reaction score
18
Location
Germany
hey when i try to pick rewards of demon helmet i get this error

Code:
[Error - Action Interface]
data/actions/scripts/quests/system.lua:onUse
Description:
data/lib/050-function.lua:703: attempt to call field 'empty' (a nil value)
stack traceback:
        data/lib/050-function.lua:703: in function 'isContainer'
        data/actions/scripts/quests/system.lua:31: in function <data/actions/scripts/quests/system.lua:9>


the chest does only open and i can remove the items from the chest and if i click it again after i removed items i get empty chests in my inventoty...

Please Help me :)[/code]

@Limos
@dominique120
 
Last edited by a moderator:
Then how did someone else added it in the map (actionids/uniqueids)?
You can change
Code:
not table.empty(thing.items)
To
Code:
#thing.items ~= 0
 
Then how did someone else added it in the map (actionids/uniqueids)?
You can change
Code:
not table.empty(thing.items)
To
Code:
#thing.items ~= 0
should it work now?

Then how did someone else added it in the map (actionids/uniqueids)?
You can change
Code:
not table.empty(thing.items)
To
Code:
#thing.items ~= 0
now i dont get any item whn i click the chest
Then how did someone else added it in the map (actionids/uniqueids)?
You can change
Code:
not table.empty(thing.items)
To
Code:
#thing.items ~= 0
now i dont anything when i try to loot the chests :/

NEVER MIND IT WORKS TYY!!
 
Last edited by a moderator:
Back
Top