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

Lua Items does not show attributes

DreadShi

Member
Joined
May 18, 2019
Messages
180
Reaction score
7
using this system CreatureEvent - [TFS 1.3] Upgrade System (https://otland.net/threads/tfs-1-3-upgrade-system.264672/page-4) , no errors at all but the item does not show any attribute or level , already installed everything also added showattributes thing at items.xml

You see a sword (Atk:8, Def:8 +2).
It weighs 35.00 oz.
Item ID: 2376
Post automatically merged:

Solved , i had to replace my onlook function with this
Lua:
function Player:onLook(thing, position, distance)
    local ret = EventCallback(EVENT_CALLBACK_ONLOOK, self, thing, position, distance)
    ret = onItemUpgradeLook(self, thing, position, distance, ret)
    self:sendTextMessage(MESSAGE_INFO_DESCR, ret)
end
 
Last edited:
Back
Top