• 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. ivvanek

    [TFS 1.3] Postman Quest, cannot open door

    /action/scripts/other/doors.lua unlockedDoors = { } local function isDoorLocked(keyId, position) if keyId == 0 then return false end if unlockedDoors[keyId] then for i = 1, #unlockedDoors[keyId] do if position == unlockedDoors[keyId][i] then...
  2. ivvanek

    [TFS 1.3] Postman Quest, cannot open door

    Hello there, I am stuck on 5 mission when you have to open right doors for get the present and return it to npc. I cannot open these doors. present.lua function onUse(player, item, fromPosition, target, toPosition, isHotkey) item:remove(1) toPosition:sendMagicEffect(CONST_ME_POFF)...
  3. ivvanek

    [TFS 1.3] Postman quest, crowbar on mailbox not working

    Fixed, thank you !
  4. ivvanek

    [TFS 1.3] Postman quest, crowbar on mailbox not working

    I have added in crowbar.lua local key = 12451 function onUse(player, item, fromPosition, target, toPosition, isHotkey) if target.uid == 10168 and player:getStorageValue(key) < 0 then player:setStorageValue(key, 1) player:say('Success.', TALKTYPE_MONSTER_SAY) elseif target.uid...
  5. ivvanek

    [TFS 1.3] Postman quest, crowbar on mailbox not working

    action.xml <action itemid="2416" script="tools/crowbar.lua" /> crowbar.lua function onUse(player, item, fromPosition, target, toPosition, isHotkey) return onUseCrowbar(player, item, fromPosition, target, toPosition, isHotkey) end
  6. ivvanek

    [TFS 1.3] Postman quest, crowbar on mailbox not working

    Dear OTLanders, Where i have to find the way to fix action to use crowbar on mailbox in Folda. Kevin.lua https://pastebin.com/U2vCT8tS storages.lua https://pastebin.com/MaTZQf3c actions.lua https://pastebin.com/5DBZNkEW In mapeditor mailbox has 2155 uniqueid Where to find the solution?
  7. ivvanek

    [TFS 1.3] Cannot rope monster

    Not working, here is my actions.lua https://pastebin.com/Y5GyVmk6
  8. ivvanek

    [TFS 1.3] Cannot rope monster

    With players and items on the floor it works good but when a monster go in to rope place i cannot rope him up. Where to find the hint?
  9. ivvanek

    [TFS 1.3] [8.6] Questlog how to fix

    I have a little problem with mission 2, when i use crowbar on mailbox in folda nothing happend and see "you cannot use this object". Uniqueid of mailbox is 2155, which should be?
  10. ivvanek

    [TFS 1.3] [8.6] Questlog how to fix

    Thank you, and have you maybe quests.xml with all quests for tfs 1.3?
  11. ivvanek

    [TFS 1.3] [8.6] Questlog how to fix

    Have you it all? because your Postman is working. Here is my data/lib/core/storages.lua -- STORAGES -- Storage = { DemonOak = { Done = 1010, Progress = 1013, Squares = 1014, AxeBlowsBird = 8288, AxeBlowsLeft = 8289, AxeBlowsRight = 8290...
  12. ivvanek

    [TFS 1.3] [8.6] Questlog how to fix

    Good day! How to fix questlog working? for example i need to add Postman Quest in quests.xml but i dont see storageid value or im blind... can u explain me how to? here is my quests.xml <quest name="The Postman Missions" startstorageid="100171" startstoragevalue="1"> <mission...
  13. ivvanek

    [TFS 1.3] [8.6] Quest Log not working

    It will working on TFS 1.3 ?
  14. ivvanek

    [TFS 1.3] [8.6] Quest Log not working

    On my quest log i dont have any quests done. How i can get it working? i want to understand the logic. Here is my quests.xml https://pastebin.com/Gd0jRq5Z I heard about storageids but i dont know where i have to put it.
  15. ivvanek

    [TFS 1.3] [8.6] [Warning - Weapons::registerEvent] Duplicate registered item with id: 0

    Thank you, you just removed new wands or anything else?
  16. ivvanek

    [TFS 1.3] [8.6] [Warning - Weapons::registerEvent] Duplicate registered item with id: 0

    Still not fixed ;/ It is TFS 1.3 downgraded 8.6 by Nekiro
  17. ivvanek

    [TFS 1.3] [8.6] [Warning - Weapons::registerEvent] Duplicate registered item with id: 0

    Thank you for quick answer, I do that what you said but i have it many more ;P [Warning - Weapons::registerEvent] Duplicate registered item with id: 0 [Warning - Weapons::registerEvent] Duplicate registered item with id: 0 [Warning - Weapons::registerEvent] Duplicate registered item with id: 0...
  18. ivvanek

    [TFS 1.3] [8.6] [Warning - Weapons::registerEvent] Duplicate registered item with id: 0

    Console error: [Warning - Weapons::registerEvent] Duplicate registered item with id: 0 weapons.xml https://pastebin.com/JsUZjMeD Here is not itemid=0 I can upload additional files, just let me know which ones.
  19. ivvanek

    [TFS 1.3] 8.6 Actions -> quest reward from chests and other containers

    I will try it what you say and give you a feedback. but i have found in my action.xml and dont know if i have to disable it or keep enabled. <action actionid="2000" script="quests/system.lua" /> <action actionid="2016" script="quests/system.lua" /> <action actionid="2215"...
Back
Top