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

    Lua in a timer event called from:

    What is happening is that if the player goes in sequence to kill the boss he suddenly starts giving this error or if he simply does not count the time again and expels him at any time, does anyone know how I can adjust this? TFS 1.3 2020-10-28 12:54:17 - Lua Script Error: [Main Interface]...
  2. darkmu

    Lua luaPlayerAddItemEx(). Item not found

    What is happening when I try to send more than 2 items (not stackable) it simply gives this type of error, if I send only 1 item it will deliver correctly. Can someone help me? TFS 1.3 rewards = { {type = "experience", value = 275000}, {type = "money", value =...
  3. darkmu

    Lua weapon custom

    TFS 1.3 I'm making some custom weapons and I wonder if anyone can help me? In the example, if the monster is on the side the beam would catch both and so on. An example would be the diamond arrow, but I would not like it to be in the area, but rather for the lightning to follow the monster.
  4. darkmu

    Lua death count for everyone

    What is happening is that if someone hunts together at a party doing a task it is always counted the last one to kill and not everyone who did some kind of damage, could someone help me as I do this? local config = _G["riftTasksConfig"] local storage = 901000 function onKill(player, target...
  5. darkmu

    Lua lose more experience ignoring the bless

    I always forget to write. I'm using otg premium version 1.3
  6. darkmu

    Lua lose more experience ignoring the bless

    Would like to know if there is a function that I can ignore as a blessing and cause a person to lose% of experience, skills and magic levels? Because I want to make a change to my server where the player dies to player / monster using bot he will have twice the experience and skills lost Can...
  7. darkmu

    Monster Monster and Bosses 12.40

    I made a topic using my git repository and the forum administrator said I couldn't be using an external link.
  8. darkmu

    Lua doSendMagicEffect

    That's more or less, so I didn't want it to hurt, just leave the only effect ha ha ha
  9. darkmu

    Lua doSendMagicEffect

    Yes, but I would like to know if it is possible to make the same spell, I define the field and use the function to present it. Example: arr = { {0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0}, {0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0}, {0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0}, {0, 0, 0...
  10. darkmu

    Lua doSendMagicEffect

    Could someone help me or give me examples such as using the function to present colored effects on the screen and such, when clicking on a chest, or using an onThink () to make the character's effect come out? Because the only way I use it would be in spells, but I would like to pass these...
  11. darkmu

    Gesior login failed

    <?php if (!defined('INITIALIZED')) exit; if (isset($_REQUEST['action']) && $_REQUEST['action'] == 'logout') Visitor::logout(); if (!isset($_SESSION['logado'])) { if (isset($_REQUEST['account_login']) && isset($_REQUEST['password_login']) && isset($_REQUEST['login']) &&...
  12. darkmu

    Help - Error when Copying.

    Look this: https://github.com/opentibiabr/otservbr-global/issues/767
  13. darkmu

    TFS 1.X+ aol reminder not working

    I tested it here and it worked perfectly, you can't leave SendCancelMessage because when logging in automatically messages of this type already appear, try to use sendTextMessage to debug.
  14. darkmu

    TFS 1.X+ aol reminder not working

    function onLogin(player) local necklace = player:getSlotItem(CONST_SLOT_NECKLACE) if necklace == nil or not Item(necklace:getUniqueId()) == 2173 then player:sendCancelMessage("You dont have a amulet of loss!") else player:sendCancelMessage("You have amulet...
  15. darkmu

    Gesior login failed

    Today my Gesior started to crash when I try to login, however it is not being impacted anywhere else, it just keeps loading and gives an error without treatment. I have had my server / site online for over 3 months without any problem and suddenly started giving it, does anyone have any idea...
  16. darkmu

    Lutabra.com spoof?

    Can anyone tell me if this is allowed? I am denouncing because this admin is entering the servers of our colleagues and making the disclosure of his server, that is, being unethical.
  17. darkmu

    Lua onthink question

    True, I will try here and return later with the best answer.
  18. darkmu

    Lua onthink question

    I'm doing a system based on movements, where the players entered the teleport and when completing 10 players, it will activate the boss automatically and preventing people from entering until killing him, the solution to check the 10 people and summon the boss I should do for globalevents...
  19. darkmu

    Lua spell monster not damage

    Thanks !! 🥰 🥰
  20. darkmu

    Lua spell monster not damage

    I'm trying to convert a spell from player to monster, but when attacking spells, it's not damaging the player, can someone help me? -- Delay between animations. local animationDelay = 200 local combat = {} -- Frames (1 = Area, 2 = Player, 3 = Player + Self Damaging) local area = { {...
Back
Top