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

parcel bug

Competitibia

Pain & Glory WHole
Joined
Apr 1, 2021
Messages
545
Solutions
3
Reaction score
210
Hey how can i fix decay of items that are parceled?
e.g if player sends an enchanted staff in parcel the staff decay stops

fixed by making movements script:

Lua:
function onEquip(cid, item, slot)
    doDecayItem(item.uid)
    return true
end

function onDeEquip(cid, item, slot)
    doDecayItem(item.uid)
    return true
end

but few other otses still have the bug so im putting it out there


(sorry for support board i just fixed it myself xD)
:)
 
Back
Top