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

[HELP] [MOVEMENTS] You Don´t have permission to use this portal. [HOW TO REALEASE ACCESS]

Hyagosrs

Member
Joined
Mar 10, 2018
Messages
94
Solutions
1
Reaction score
11
i need help to realese access to the portals from Thw forgotten Knowledge Quest.

error.png

And this is the movement script:

Lua:
local destination = {
    [27715] = {newPos = Position(32807, 31657, 8), effect = CONST_ME_MORTAREA},
    [27716] = {newPos = Position(32325, 32089,7), effect = CONST_ME_MORTAREA},
    [27719] = {newPos = Position(32786, 32820, 13), effect = CONST_ME_PURPLEENERGY},
    [27720] = {newPos = Position(32328, 32089,7), effect = CONST_ME_PURPLEENERGY},
    [27717] = {newPos = Position(32637, 32256, 7), effect = CONST_ME_SMALLPLANTS},
    [27718] = {newPos = Position(32331, 32089, 7), effect = CONST_ME_SMALLPLANTS},
    [27721] = {newPos = Position(33341, 31168, 7), effect = CONST_ME_FIREAREA},
    [27722] = {newPos = Position(32334, 32089,7), effect = CONST_ME_FIREAREA},
    [27725] = {newPos = Position(32207, 31036, 10), effect = CONST_ME_ICEATTACK},
    [27726] = {newPos = Position(32337, 32089,7), effect = CONST_ME_ICEATTACK},
    [27723] = {newPos = Position(32780, 32686, 14), effect = CONST_ME_YELLOWENERGY},
    [27724] = {newPos = Position(32340, 32089, 7), effect = CONST_ME_YELLOWENERGY},
    [11796] = {newPos = Position(32907, 32848, 13), effect = CONST_ME_ENERGYHIT},
    [11798] = {newPos = Position(32332, 32092, 7), effect = CONST_ME_ENERGYHIT}
}

function onStepIn(creature, item, position, fromPosition)
    local player = creature:getPlayer()
    if not player then
        return
    end

    local teleport = destination[item.itemid]
    if not teleport then
        return
    end
    if item.itemid == 11796 then
        if player:getStorageValue(Storage.ForgottenKnowledge.AccessLast) < 1 then
            if player:getStorageValue(Storage.ForgottenKnowledge.LadyTenebrisKilled) >= 1 and player:getStorageValue(Storage.ForgottenKnowledge.LloydKilled) >= 1 and
                player:getStorageValue(Storage.ForgottenKnowledge.ThornKnightKilled) >= 1 and player:getStorageValue(Storage.ForgottenKnowledge.DragonkingKilled) >= 1 and
                player:getStorageValue(Storage.ForgottenKnowledge.HorrorKilled) >= 1 and player:getStorageValue(Storage.ForgottenKnowledge.TimeGuardianKilled) >= 1 then

                player:setStorageValue(Storage.ForgottenKnowledge.AccessLast, 1)
            end
        end
    end
    if player:getStorageValue(teleport.storage) >= 1 then
        position:sendMagicEffect(teleport.effect)
        player:teleportTo(teleport.newPos)
        player:getPosition():sendMagicEffect(CONST_ME_TELEPORT)
        return true
    else
        if item.itemid == 11796 then
            player:teleportTo(fromPosition)
            player:sendTextMessage(MESSAGE_EVENT_ADVANCE, "You don\'t have the permission to use this portal.")
            player:getPosition():sendMagicEffect(CONST_ME_TELEPORT)
            return true
        end
        local pos = position
        pos.y = pos.y + 2
        player:teleportTo(pos)
        player:sendTextMessage(MESSAGE_EVENT_ADVANCE, "You don\'t have the permission to use this portal.")
        player:getPosition():sendMagicEffect(CONST_ME_TELEPORT)
        pos.y = pos.y - 2
        pos:sendMagicEffect(CONST_ME_TELEPORT)
    end
    return true
end




Please, help me :3
 
Solution
What you mean? You want to remove storage and allow everyone to enter? If so then try this, it will allow everyone to enter.
Lua:
local destination = {
    [27715] = {newPos = Position(32807, 31657, 8), effect = CONST_ME_MORTAREA},
    [27716] = {newPos = Position(32325, 32089,7), effect = CONST_ME_MORTAREA},
    [27719] = {newPos = Position(32786, 32820, 13), effect = CONST_ME_PURPLEENERGY},
    [27720] = {newPos = Position(32328, 32089,7), effect = CONST_ME_PURPLEENERGY},
    [27717] = {newPos = Position(32637, 32256, 7), effect = CONST_ME_SMALLPLANTS},
    [27718] = {newPos = Position(32331, 32089, 7), effect = CONST_ME_SMALLPLANTS},
    [27721] = {newPos = Position(33341, 31168, 7), effect = CONST_ME_FIREAREA},
    [27722] = {newPos = Position(32334, 32089,7)...
What you mean? You want to remove storage and allow everyone to enter? If so then try this, it will allow everyone to enter.
Lua:
local destination = {
    [27715] = {newPos = Position(32807, 31657, 8), effect = CONST_ME_MORTAREA},
    [27716] = {newPos = Position(32325, 32089,7), effect = CONST_ME_MORTAREA},
    [27719] = {newPos = Position(32786, 32820, 13), effect = CONST_ME_PURPLEENERGY},
    [27720] = {newPos = Position(32328, 32089,7), effect = CONST_ME_PURPLEENERGY},
    [27717] = {newPos = Position(32637, 32256, 7), effect = CONST_ME_SMALLPLANTS},
    [27718] = {newPos = Position(32331, 32089, 7), effect = CONST_ME_SMALLPLANTS},
    [27721] = {newPos = Position(33341, 31168, 7), effect = CONST_ME_FIREAREA},
    [27722] = {newPos = Position(32334, 32089,7), effect = CONST_ME_FIREAREA},
    [27725] = {newPos = Position(32207, 31036, 10), effect = CONST_ME_ICEATTACK},
    [27726] = {newPos = Position(32337, 32089,7), effect = CONST_ME_ICEATTACK},
    [27723] = {newPos = Position(32780, 32686, 14), effect = CONST_ME_YELLOWENERGY},
    [27724] = {newPos = Position(32340, 32089, 7), effect = CONST_ME_YELLOWENERGY},
    [11796] = {newPos = Position(32907, 32848, 13), effect = CONST_ME_ENERGYHIT},
    [11798] = {newPos = Position(32332, 32092, 7), effect = CONST_ME_ENERGYHIT}
}

function onStepIn(creature, item, position, fromPosition)
    local player = creature:getPlayer()
    if not player then
        return
    end

    local teleport = destination[item.itemid]
    if not teleport then
        return
    end
    if item.itemid == 11796 then
        position:sendMagicEffect(teleport.effect)
        player:teleportTo(teleport.newPos)
        player:getPosition():sendMagicEffect(CONST_ME_TELEPORT)
        return true
      end
    end
    return true
 
Solution
Lua:
if player:getStorageValue(Storage.ForgottenKnowledge.AccessLast) < 1 then
    player:setStorageValue(Storage.ForgottenKnowledge.LadyTenebrisKilled, 1)
    player:setStorageValue(Storage.ForgottenKnowledge.LloydKilled, 1)
    player:setStorageValue(Storage.ForgottenKnowledge.ThornKnightKilled, 1)
    player:setStorageValue(Storage.ForgottenKnowledge.DragonkingKilled, 1)
    player:setStorageValue(Storage.ForgottenKnowledge.HorrorKilled, 1)
    player:setStorageValue(Storage.ForgottenKnowledge.TimeGuardianKilled, 1)
    player:setStorageValue(Storage.ForgottenKnowledge.AccessLast, 1)
end

add this to your login.lua and you should be fine
 
thanks, the problema was i didnt have this part in my login.lua :
Lua:
player:getStorageValue(Storage.ForgottenKnowledge.AccessLast) < 1 then
 
Back
Top