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

[8.54] FrankFarmers Real Tibia Project [EPIC RELEASE] + FULL ZAO LINK

When I kill Azerus in Yalahari quest he doesn't turn into a teleporter after his death as he should be doing :eek: I also get this error in the console
PHP:
[Error - Action interface] In a timer event called from: data/actions/scripts/quests/azerus.lua:onUse Description: <luaDoItemSetAttribute> Item not found
Anyone knows what's wrong? =)
 
Omfg, you openned the stones of the POI? (In the first part of the quest)
I dont know how open, I pull the 15 levers , but say: You have not pulled all 15 levers.
 
Some of the bugs I Noticed.

Some thais crap **FIXED
poh temple PZ**fixed
Poi - Purple fire bugged **FIXED

INQ Quest - Bugged
Yalahar quest - Bugged

POI works 110%, REALLY great work with that quest!
 
Fixed the inquisition teleporters, just replace your inq mod with this one. You need to fix some of the tps in the map aswell tho



inquisition.xml
 
Code:
<?xml version="1.0" encoding="UTF-8"?>
<mod name="Inquisition"

version="1.0" author="None" contact=".com" enabled="yes">

        <event type="login" name="inquisitionRegister" event="script"><![CDATA[
        function onLogin(cid)
    registerCreatureEvent(cid, "Inquisition")
        return true
end]]></event>

    <event type="kill" name="Inquisition" event="script"><![CDATA[
local config = {

    message = "You have 3 minutes to enter the teleporter after that it will disappear.",

    timeToRemove = 180, -- seconds

    teleportId = 1387,

    bosses = { -- Monster Name, Teleport To Position, Teleport Position

        ["Ushuriel"] = { { x=1176, y=1140, z=12 }, { x=1105, y=1214, z=12, stackpos=1 } },

        ["Annihilon"] = { { x=1248, y=1297, z=12 }, { x=1187, y=1206, z=12, stackpos=1 } },

        ["Hellgorak"] = { { x=1064, y=1308, z=13 }, { x=1192, y=1248, z=12, stackpos=1 } },

        ["Madareth"] = { { x=1044, y=1203, z=13 }, { x=1112, y=1248, z=12, stackpos=1 } },

        ["Zugurosh"] = { { x=1128, y=1151, z=12 }, { x=1138, y=1213, z=12, stackpos=1 } },

        ["Latrivan"] = { { x=1154, y=1195, z=13 }, { x=1147, y=1249, z=12, stackpos=1 } }

    }

}



local function removal(position)

    if getThingfromPos(position).itemid == config.teleportId then

        doRemoveItem(getThingfromPos(position).uid)

    end

    return TRUE

end



function onKill(cid, target, lastHit)
if lastHit == true then

    local position = getCreaturePosition(target)

    for name, pos in pairs(config.bosses) do

        if name == getCreatureName(target) then

            teleport = doCreateTeleport(config.teleportId, pos[1], pos[2])

            doCreatureSay(cid, config.message, TALKTYPE_ORANGE_1)

            addEvent(removal, config.timeToRemove * 1000, pos[2])
            doSendMagicEffect(pos[2], 10)

        end

    end
end

    return TRUE

end]]></event>

</mod>
 
Code:
<?xml version="1.0" encoding="UTF-8"?>
<mod name="Inquisition"

version="1.0" author="None" contact=".com" enabled="yes">

        <event type="login" name="inquisitionRegister" event="script"><![CDATA[
        function onLogin(cid)
    registerCreatureEvent(cid, "Inquisition")
        return true
end]]></event>

    <event type="kill" name="Inquisition" event="script"><![CDATA[
local config = {

    message = "You have 3 minutes to enter the teleporter after that it will disappear.",

    timeToRemove = 180, -- seconds

    teleportId = 1387,

    bosses = { -- Monster Name, Teleport To Position, Teleport Position

        ["Ushuriel"] = { { x=1176, y=1140, z=12 }, { x=1105, y=1214, z=12, stackpos=1 } },

        ["Annihilon"] = { { x=1248, y=1297, z=12 }, { x=1187, y=1206, z=12, stackpos=1 } },

        ["Hellgorak"] = { { x=1064, y=1308, z=13 }, { x=1192, y=1248, z=12, stackpos=1 } },

        ["Madareth"] = { { x=1044, y=1203, z=13 }, { x=1112, y=1248, z=12, stackpos=1 } },

        ["Zugurosh"] = { { x=1128, y=1151, z=12 }, { x=1138, y=1213, z=12, stackpos=1 } },

        ["Latrivan"] = { { x=1154, y=1195, z=13 }, { x=1147, y=1249, z=12, stackpos=1 } }

    }

}



local function removal(position)

    if getThingfromPos(position).itemid == config.teleportId then

        doRemoveItem(getThingfromPos(position).uid)

    end

    return TRUE

end



function onKill(cid, target, lastHit)
if lastHit == true then

    local position = getCreaturePosition(target)

    for name, pos in pairs(config.bosses) do

        if name == getCreatureName(target) then

            teleport = doCreateTeleport(config.teleportId, pos[1], pos[2])

            doCreatureSay(cid, config.message, TALKTYPE_ORANGE_1)

            addEvent(removal, config.timeToRemove * 1000, pos[2])
            doSendMagicEffect(pos[2], 10)

        end

    end
end

    return TRUE

end]]></event>

</mod>
where is inq....xml?
 
I have this error:
Code:
Allocation failed, server out of memory!
Decrease size of your map or compile in a 64-bit mode.
Can someone help me?
 
I have this error:
Code:
Allocation failed, server out of memory!
Decrease size of your map or compile in a 64-bit mode.
Can someone help me?

Read the error message, you haven't got enough RAM
 
i have 8 giga ram... 273 gb free hd so... anyone else wanna try to help me?
 
Back
Top