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

Search results

  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

    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...
  3. 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)...
  4. 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...
  5. 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...
  6. 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?
  7. 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...
  8. 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}...
  9. A

    doTargetCombatHealth TFS 1.5 downgrade

    Can anyone help me with this error? local storage = Storage.GraveDanger.CobraBastion.Questline local rooms = { [1] = {fromPos = Position(33390, 32642, 6), toPos = Position(33394, 32646, 6)}, [2] = {fromPos = Position(33390, 32646, 6), toPos = Position(33394, 32650, 6)}, [3] =...
  10. A

    Lua I need help with script

    I'm trying to create a script in which I need to repeat this part of the code several times, but I know that TFS has a limit on repeating, for example "local", is there any way to insert the information into just one variable? local t = { Position(30629, 32466, 9), Position(30628...
  11. A

    House dont saved when purchased

    Good morning, when I purchase a house and re-login I lose the house, I tried /save and it doesn't work, any solution? CREATE TABLE `houses` ( `id` int(11) NOT NULL, `owner` int(11) NOT NULL, `paid` int(10) UNSIGNED NOT NULL DEFAULT 0, `warnings` int(11) NOT NULL DEFAULT 0, `name`...
  12. A

    Lua Command !houseinfo

    Good morning, can someone provide a !houseinfo script for the player to obtain information on when they will pay the house rent? I use TFS 1.5 downgrade 8.6.
  13. A

    Item chance unique="1" drop double Reward Chest

    Can anyone help me with this problem, all participants are getting a reward for an item that should be unique, Ex: Ferumbras' Hat. Any solution? if not globalBosses then globalBosses = {} end function Monster.setReward(self, enable) if enable then if not...
  14. A

    Bounty Hunter System mysql error

    Would anyone have a solution for this error? System works in game but is not inserting information into the database CREATE TABLE IF NOT EXISTS `bounty_hunter_system` ( `id` int(11) NOT NULL auto_increment, `hunter_id` int(11) NOT NULL, `target_id` int(11) NOT NULL, `killer_id`...
  15. A

    Elfbot does not sell items with the same server id

    Does anyone have a solution for this? Elfbot does not sell items with the same server id, Ex: Mercenary Sword ID 7386 And some items with different ids, like war ax id 2454
  16. A

    Lua Dance in sqm that remove stone TFS 1.5 downgrade

    I need a dance script that removes a stone for TFS 1.5 downgrade
  17. A

    Error compiling TFS 1.5 downgrade Ubuntu 22.04 LTS

    Can anyone help me with this error? I did everything as the tutorial says
  18. A

    Edit script CastleWar

    How do I add this line to the script without causing this error? [7] = {pos = Position(31884, 31880, 7), name = "Gate", spawn = 320} local config = { minPlayers = 1, -- Players online para poder invadir. minLevel = 50, -- Level minimo dos players online. warningDelay = 5, --...
  19. A

    Lua Convert Script TFS 0.4 to TFS 1.5 downgrade

    I know it's a lot to ask, but can anyone convert this script to TFS 1.5? If possible in revscript? lib folder: COH_PUSHTIME = 10800 -- Tempo (em segundos) de exhausted para usar o comando !gocastle - Padrão (3 horas) COH_AREA = {{x = 11107, y = 1104, z = 7}, {x = 1109, y = 1106, z = 7}} --...
  20. A

    Lua Castle War 24h TFS 1x

    Does anyone have the castle war 24h event to make available? I found some, but they seem to be incomplete.
Back
Top