• 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!

Recent content by Azerty

  1. A

    Lua Condition_cursed

    How do I make the damage increase instead of decreasing? local condition = Condition(CONDITION_CURSED, CONDITIONID_COMBAT) condition:setParameter(CONDITION_PARAM_DELAYED, true) condition:setParameter(CONDITION_PARAM_MINVALUE, -1) condition:setParameter(CONDITION_PARAM_MAXVALUE, -1000)...
  2. A

    Tfs 1.5 by nekiro palladin no attack weapon when use pot

    config.lua change: -- Item Usage timeBetweenActions = 200 timeBetweenExActions = 1000 to timeBetweenActions = nil timeBetweenExActions = nil
  3. A

    how to make the monster use teleport?

    how to make the monster use teleport? local teleport = MoveEvent() function teleport.onStepIn(creature, item, position, fromPosition) if creature:isMonster() then if creature:getName() == "Rat" then return true --false? end if item.actionid == 42555 then...
  4. A

    Lua Monster move direction

    How do I set the monster to just walk? because he keeps trying to reach the player and doesn't move
  5. A

    Lua Monster move direction

    up! Sorry to revive the topic but I have the same problem, I can't do this code
  6. A

    Lua Magic attack monster

    yes 1714192455 I managed to make this script but I'm not able to make sure that the magic effect doesn't occur in the same sqm as the monster, can anyone help me? local combat = Combat() combat:setParameter(COMBAT_PARAM_EFFECT, CONST_ME_SMALLCLOUDS) combat:setParameter(COMBAT_PARAM_DISPEL...
  7. 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)...
  8. 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...
  9. 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...
  10. A

    Lua Script mechanic boss Faceless Bane to make available?

    Perfect bro, thxxx
  11. 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
  12. 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
  13. 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?
Back
Top