• 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!
  • 2026 staff recruitment is open! Check it out and consider applying!

Search results

  1. Ancores

    NPC Support!

    I'm a total noob in scripting npcs and can't get this to work lol. I want to change the talk_state when saying "huhu" to the npc to talk_state 50 and then if I say "bye" or leave the npcs the talk_state should be changed back to 0 so I can say huhu again. local keywordHandler =...
  2. Ancores

    If have storage, can use teleport.

    local storage = 1111 local pos = {x=111, y=111, z=7} function onStepIn(cid, item, position, fromPosition) if getPlayerStorageValue(cid, storage) ~= -1 then doTeleportThing(cid, pos) doSendMagicEffect(getThingPos(cid), CONST_ME_TELEPORT) else doTeleportThing(cid, fromPosition) end return...
  3. Ancores

    Lua Creature Scripts

    login.lua Edit: @up yep xd
  4. Ancores

    How long have you been playing tibia?

    I started a very long time ago lol, I think it was 1998. The login screen looked like this back then:
  5. Ancores

    Action Racing Quest

    What do you mean, "what doesnt work: the level"? And you can just finish the race if you're driving, not by walking on it. Ctrl+arrows
  6. Ancores

    Windows Disable Error Reporting, Windows 7 Home Premium

    I've searched for a solution but can't find it. I know that some OS can turn it off with gpedit.msc, but Home Premium doesn't have that.
  7. Ancores

    Sql Query !

    function onThink(inerval, lastExecution) for _, cid in ipairs(getPlayersOnline()) do db.executeQuery("UPDATE `killers` SET `unjustified` = 0 WHERE `id` = "..getPlayerGUID(cid).." LIMIT 1;") end doBroadcastMessage("Everybody Lost 1 Frag. Next remotion in 1 hours.") return true end
  8. Ancores

    Tutorial Arrow

    function onAdvance(cid, skill, oldlevel, newlevel) if getPlayerStorageValue(cid, 1111) <= 0 and skill == SKILL__LEVEL and newlevel >= 40 then doSendMagicEffect({x=1, y=1, z=7}, CONST_ME_TUTORIALARROW) doSendAnimatedText({x=1, y=1, z=7}, "Get your money!", TEXTCOLOR_RED) end return true end
  9. Ancores

    Solved Glowing Switch (no stack) problem

    They're supposed to use the search function to find the solutions for their problems and if they don't find it, then they can ask for help.
  10. Ancores

    Few script needed for OT newbie! (:

    1. items.xml <item id="2166" article="a" name="power ring"> <attribute key="weight" value="80" /> <attribute key="slotType" value="ring" /> <attribute key="transformEquipTo" value="2203" /> <attribute key="stopduration" value="1" /> <attribute key="showduration" value="1" /> </item>...
  11. Ancores

    Ring that increases player life 25%

    You're right, my bad
  12. Ancores

    Ring that increases player life 25%

    Ok, then just use: <item id="ITEM_ID" article="a" name="ring"> <attribute key="weight" value="80" /> <attribute key="slotType" value="ring" /> <attribute key="maxhealthpercent" value="25" /> </item> movements.xml <movevent type="Equip" itemid="ITEM_ID" slot="ring" event="function"...
  13. Ancores

    Ring that increases player life 25%

    This should work <item id="ITEM_ID" article="a" name="ring"> <attribute key="weight" value="80" /> <attribute key="slotType" value="ring" /> <attribute key="decayTo" value="0" /> <attribute key="transformDeEquipTo" value="ITEM_ID" /> <attribute key="duration" value="1200" />...
Back
Top