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

    Lua Magic attack monster

    Good morning, does anyone know how I can make this spell damage monsters? local condition = Condition(CONDITION_REGENERATION, CONDITIONID_DEFAULT) condition:setParameter(CONDITION_PARAM_SUBID, 88888) condition:setParameter(CONDITION_PARAM_TICKS, 5 * 1000)...
  2. A

    Lua Script summon

    I'm trying to make this script work, I need it to only summon the amount defined in maxMonster, but it summons the monsters infinitely, could anyone help me? And I also need you to summon 2 different monsters, you can use Demon as an example local function getRandomPosition(minPosition...
  3. A

    Lua Error NPC Cledwyn TFS 1.5 downgrade

    Could anyone help me with this error? local keywordHandler = KeywordHandler:new() local npcHandler = NpcHandler:new(keywordHandler) NpcSystem.parseParameters(npcHandler) local talkState = {} function onCreatureAppear(cid) npcHandler:onCreatureAppear(cid) end function...
  4. A

    Lua Script mechanic boss Faceless Bane to make available?

    Perfect bro, thxxx
  5. A

    Lua Script mechanic boss Faceless Bane to make available?

    It still doesn't work, the boss remains immortal when passing through the tiles and the tiles are not resetting
  6. A

    Lua Script mechanic boss Faceless Bane to make available?

    Thanks bro, I tested it here and it seems that the monster is always immortal and the tiles are not resetting
  7. A

    Lua Script mechanic boss Faceless Bane to make available?

    Good morning, does anyone have a script for the Faceless Bane boss mechanic to make available?
  8. A

    Lua Error boss Urmahlullu the Immaculate disappear

    It didn't work, and the player is still kicked
  9. A

    Lua Error boss Urmahlullu the Immaculate disappear

    Can anyone help me with this error, when someone already kills the boss and another player tries to enter the room the message appears that the room is occupied, but the boss disappears. I use TFS 1.5 downgrade 8.6 -- lever to urmahlullu room local config = { requiredLevel = 100, daily...
  10. A

    Lua Erro Boss Duke Krule TFS 1.5 downgrade 8.6

    Oh, it's beyond my knowledge hahaha
  11. A

    Lua Erro Boss Duke Krule TFS 1.5 downgrade 8.6

    same error local levers = { {leverPos = Position(33515, 31444, 13), teleportTo = Position(33489, 31441, 13), bossName = "Earl Osam", bossPos = Position(33488, 31435, 13)}, -- Cormaya {leverPos = Position(33454, 31413, 13), teleportTo = Position(33457, 31442, 13), bossName = "Count...
  12. A

    Lua Erro Boss Duke Krule TFS 1.5 downgrade 8.6

    I didn't understand, how to apply it in the script?
  13. A

    Lua Erro Boss Duke Krule TFS 1.5 downgrade 8.6

    Can anyone help me with this error? local levers = { {leverPos = {x = 33515, y = 31444, z = 13}, teleportTo = Position({x = 33489, y = 31441, z = 13}), bossName = "Earl Osam", bossPos = Position({x = 33488, y = 31435, z = 13})},--Cormaya {leverPos = {x = 33454, y = 31413, z = 13}...
  14. A

    TFS 1.X+ [TFS 1.3] Killing in the name of...., Console error at doing a boss

    I think that was it, I replaced "player.uid" with "player:getId()" in the addEvent and the error stopped, at least in the tests I did, the error is no longer occurring. I don't understand that the error is occurring in the topic script, once again, when testing, the error no longer occurred, but...
  15. A

    TFS 1.X+ [TFS 1.3] Killing in the name of...., Console error at doing a boss

    I don't know why the error is occurring in this script in line 11 local function roomIsOccupied(centerPosition, rangeX, rangeY) local spectators = Game.getSpectators(centerPosition, false, true, rangeX, rangeX, rangeY, rangeY) if #spectators ~= 0 then return true end...
  16. A

    TFS 1.X+ [TFS 1.3] Killing in the name of...., Console error at doing a boss

    Sorry to revive the topic but I have the same problem, any solution?
Back
Top