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

    Selling Bigfoot's Burden Quest [5 Copies]

    And... Just to be sure ;)... There is everything from the real quest included? Recruiting, daily tasks, rank system and warzones, with bosses and rewards?
  2. F

    Selling Bigfoot's Burden Quest [5 Copies]

    Is there any big difference between your 0.4 and the 0.2.14 TFS version, so script won't work fine?
  3. F

    Selling Bigfoot's Burden Quest [5 Copies]

    What is all included in this packet? All NPC's with all text (also the not important ones?) all monsters for the arenas, and also map files?
  4. F

    Lua How to set, if monster walk over magic fields

    Hello everyone. I try to script some monsters, and I have a little problem. Monster like dragons or so, should walk over firefield without walking around them... No problem I just set <immunity fire="1"/> But some monsters (Orc Warlord with Fire & energy, War Golems with energy, etc.) are...
  5. F

    Solved Market 9.7 doesn't work!

    You sure, that you got premium, with the char and there is some money on the balance, so he can pay the fee for the offer?
  6. F

    NPC's wont respond

    Post NPC script here...
  7. F

    [9.60/9.61] The Forgotten Server v0.2.14 (Mystic Spirit)

    Does the offlineTraining function work? Cause if you set an offline Training Skill to a value, nothing more happens :/
  8. F

    Lever Script that spawns monster[I used search]

    How should the player choose the amount?
  9. F

    I wanna host on dedicated server only for me and my friends

    But I wanna have it online 24/7. And also my internet connection is very bad :/
  10. F

    I wanna host on dedicated server only for me and my friends

    What resources do I need, when I wanna host a custom map server only for me and my friends (max. 10 Players). What do you think is the maximum I need?
  11. F

    Just some advice/help.

    Maybe, you could try this example: local keywordHandler = KeywordHandler:new() local npcHandler = NpcHandler:new(keywordHandler) NpcSystem.parseParameters(npcHandler) local talkState = {} function onCreatureAppear(cid) npcHandler:onCreatureAppear(cid) end function onCreatureDisappear(cid)...
  12. F

    Solved NPC talkes with delay

    Thanks man :D
  13. F

    Solved NPC talkes with delay

    In RL Tibia, npc with long dialoges have a delay between some lines. Is it possible to make this on an Server as well? I am using TFS 0.2.14
  14. F

    Help quest system

    Try this <action actionid="2000" script="quests/system.lua"/> <action actionid="2001" script="quests/system.lua"/>
  15. F

    Just some advice/help.

    Right formated ;) local keywordHandler = KeywordHandler:new() local npcHandler = NpcHandler:new(keywordHandler) NpcSystem.parseParameters(npcHandler) function onCreatureAppear(cid) npcHandler:onCreatureAppear(cid) end function onCreatureDisappear(cid)...
  16. F

    Just some advice/help.

    This is your script, in formated form: local keywordHandler = KeywordHandler:new() local npcHandler = NpcHandler:new(keywordHandler) NpcSystem.parseParameters(npcHandler) function onCreatureAppear(cid) npcHandlernCreatureAppear(cid) end function onCreatureDisappear(cid)...
  17. F

    Solved Level Tile for players over 50

    I like that I could help you, but please... ready my name properly! I am Taibaner, NOT Talibaner
  18. F

    Solved Level Tile for players over 50

    No, the third parameter in the function was the position he stepped on. So he got teleported to the position, he already stan on. And so it looks like nothing happens, but he only get's teleported wrong.
  19. F

    Solved Level Tile for players over 50

    function onStepIn(cid, item, position, fromPosition) if isPlayer(cid) and item.uid == 1234 then if getPlayerLevel(cid) < 50 then doPlayerSendTextMessage(cid,21,"It works !") else doPlayerSendCancel(cid,21,"You need to be below level 50.") doTeleportThing(cid, fromPosition)...
  20. F

    Solved Level Tile for players over 50

    Is there an error, or what is going wrong?
Back
Top