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

imbueing shrine

Keshoo

Newer Rich
Joined
Feb 23, 2010
Messages
166
Reaction score
5
imbue shrine, imbuing items from my inventory slots that doing problem with imbued item timer not count unless i drop this item or move it
is there anyway to restrict imbuing from my inventory slots, only can imbue from my backpack

this is shrine imbue script i think

LUA:
local imbuement = Action()

function imbuement.onUse(player, item, fromPosition, target, toPosition, isHotkey)
    if configManager.getBoolean(configKeys.TOGGLE_IMBUEMENT_SHRINE_STORAGE) and player:getStorageValue(Storage.ForgottenKnowledge.Tomes) ~= 1 then
        return player:sendTextMessage(MESSAGE_EVENT_ADVANCE, "You did not collect enough knowledge from the ancient Shapers. Visit the Shaper temple in Thais for help.")
    end

    player:openImbuementWindow(target)
    return true
end

imbuement:id(25060, 25061, 25175, 25182, 25183)
imbuement:register()
 

Similar threads

Back
Top