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

    Lua buying items with znote points

    Hey there! I noticed that you're looking for some help with creating a script to buy items using points from your ZnoteAAC account without actually making a purchase. I suggest taking a look at this ZnoteAAC script: ZnoteAAC/znoteshop.lua at master · Znote/ZnoteAAC...
  2. E

    |Revscript request| Teleport after a Boss is killed

    Thanks for pointing that out! Just to let you know, I don't actually have TFS 1.5 or 1.4 running. I'm writing these scripts based on things I found here.
  3. E

    |Revscript request| Teleport after a Boss is killed

    Hello! To use the code in your project, you'll need to place it in the 'data/creaturescripts/scriptname.lua' directory. Just a heads up: the script is currently named 'scriptname.lua', but you'll want to change that to a name that makes sense. 1681736855 Something like this? local...
  4. E

    Respawn if getWorldTime() TFS 1.5 downgrade

    I've updated my previous post with the corrected code. Although, I want to mention that I haven't had a chance to test it myself and I only wrote it based on the documentation available.
  5. E

    |Revscript request| Teleport after a Boss is killed

    Hello, Something like this? local bosskillevent = CreatureEvent("BossKill") local monsters = { "Ghazbaran", "Morgaroth", "Orshabaal" } local teleportItemId = 1387 local teleportDuration = 60 -- the duration of the teleport in seconds function bosskillevent.onDeath(creature...
  6. E

    HELP npc that gives the new vocation and goes back to the 8th level

    Hi there! Glad to hear that you were able to solve the problem with your script, and congratulations on finishing it! Would you be willing to share your script with the community? I'm sure many people would appreciate it. Also, if you don't mind, could you please specify which engine you're...
  7. E

    Respawn if getWorldTime() TFS 1.5 downgrade

    Try this: local config = { bossName = "Midnight Panther", bossPos = Position(32841, 32706, 7), spawnTime = "00:00", -- midnight removeTime = "06:00", -- 6am } function onThink(interval, lastExecution) local currentTime = os.date("%H:%M") -- get current server time in format...
  8. E

    TFS 1.X+ If we are killed by a Player or a Guild, we do not lose EQ. (body disappears)

    Try this: data/creaturescripts/scripts/dontdroploot.lua: function onDeath(player, corpse, killer, mostDamageKiller, unjustified, mostDamageUnjustified) local goldAmount = 100 local playerId = player:getId() if killer and killer:isPlayer() then -- prevent the player from dropping loot...
  9. E

    Lua TFS 1.2 Save player

    Hi there, function onKill(player, target) if target:isMonster() then return true end if target:isPlayer() then player:save() end return true end <event type="kill" name="onKill" script="scripts/scriptname.lua"/>
  10. E

    |Revscript request| Teleport after a Boss is killed

    Hello, To help me better understand your request, could you please provide more information about the script you're looking for? For example, what is the name of the monster that triggers the creation of the teleport? Also, does the teleport created by the script need to disappear after a...
  11. E

    HELP WITH NPC, 20$ for working npc

    Try this @Qbecky : local internalNpcName = "Missionary of Hellheim" local npcType = Game.createNpcType(internalNpcName) local npcConfig = {} npcConfig.name = internalNpcName npcConfig.description = internalNpcName npcConfig.health = 100 npcConfig.maxHealth = npcConfig.health...
  12. E

    HELP WITH NPC, 20$ for working npc

    Try this: local internalNpcName = "Missionary of Hellheim" local npcType = Game.createNpcType(internalNpcName) local npcConfig = {} npcConfig.name = internalNpcName npcConfig.description = internalNpcName npcConfig.health = 100 npcConfig.maxHealth = npcConfig.health npcConfig.walkInterval =...
  13. E

    HELP WITH NPC, 20$ for working npc

    Hello, I did not test this: local internalNpcName = "Missionary of Hellheim" local npcType = Game.createNpcType(internalNpcName) local npcConfig = {} npcConfig.name = internalNpcName npcConfig.description = internalNpcName npcConfig.health = 100 npcConfig.maxHealth = npcConfig.health...
  14. E

    Recreate the thrill?

    I think it's a wonderful idea, and I'm sure there are many people out there who share your passion for reliving the excitement of playing Tibia. It's true that we can't turn back time and experience the game exactly as we did when we were younger, but that doesn't mean we can't create new...
  15. E

    [Germany] [Custom] OxygenOT | New Season | RPG/PVP | Custom Map | Start Monday 20-3-2023 at 18:00 GMT

    After seeing the newsticker and the boosted loot event that heavily favors players who purchase premium potions, and looking through the shop and feeling a bit overwhelmed, I couldn't help but feel that the game is very pay-to-win. While I understand that server costs can be high, I would like...
  16. E

    [Germany] [Custom] OxygenOT | New Season | RPG/PVP | Custom Map | Start Monday 20-3-2023 at 18:00 GMT

    Hello, I visited your website and was interested in playing OxygenOT, but the only thing I saw on the homepage was about premium points and donations. It seems like the game is very pay-to-win. Can you please provide more information about the game itself and how players can enjoy it without...
  17. E

    Share your favorite quote and inspire others! - drop your quote.

    "What a disgusting topic!" - King Tibianus
  18. E

    Recreate the thrill?

    Hey there, great to hear from you again! Your idea for a custom Tibia server with a fully custom map sounds exciting. I think a lot of players are looking for fresh experiences, and creating a custom map could definitely provide that. I'm curious about the challenges you're facing in creating...
  19. E

    Solved Could not locate Tibia.dat and/or Tibia.spr for 7.70

    I have downloaded the map editor that you provided, and upon inspecting the contents of the map editor directory, I have noticed the presence of a Tibia.dat and Tibia.spr file. Therefore, I believe that it is necessary to set the location to the main directory of the map editor.
  20. E

    Solved Could not locate Tibia.dat and/or Tibia.spr for 7.70

    Where did you obtain the map editor from? Would you be able to provide a link to the specific map editor that you are currently using?
Back
Top