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

    TFS 1.X+ Weapon and Defense system

    I noticed that using a one handed weapon + shield it ignores the weapon's defense, is this normal? If weapon have extradef this count, but normal def not.
  2. C

    Cannot buy 'egg' from NPC

    The item appears correctly in the trade window, looking like the ID is correct too, but when trying to buy nothing happens, no error message. items.xml <item id="2695" article="an" name="egg" plural="eggs"> <attribute key="weight" value="30" /> </item> npc.xml <?xml...
  3. C

    Talkaction with check words

    It blocks out the words only if there were just them and exactly them.
  4. C

    Talkaction with check words

    Sorry, I didn't understand exactly where and how to use it. Does this go inside the onSay function?
  5. C

    Talkaction with check words

    Is there any way to check words inside talkaction with param? I would like something like if msgcontains return false, but talkactions doesn't accept "msg" or "message" as a function or something. I would like to block for example /b idiot , /b stupid local broadcast = TalkAction("/b")...
  6. C

    TFS 1.X+ Monsters stealing loot

    When a monster deals "damage" to another that is being attacked it is "stealing" the frag and consequently the loot is blocked, as if it didn't own it. I noticed this in the bosses with reward system. Is there any way to stop monsters from fragging other monsters?
  7. C

    Lua Attempt to set protected key

    The error would be because the UID is already set in the same place and the code is trying to assign it again? Because neither in the map nor in the code this UID is not being used. Thanks
  8. C

    Lua Attempt to set protected key

    What is wrong here to generate this error? local function revert(position, itemId, transformId) local item = Tile(position):getItemById(itemId) if item then item:transform(transformId) end end local function revertAshes() local item = Tile(Position(32849, 32233...
  9. C

    TFS 1.X+ Check player coordinate

    Thanks
  10. C

    TFS 1.X+ Check player coordinate

    I would like to check if a player is in a coordinate above X. It is for a talkaction, if he is in a coordinate above X he could not execute it.
  11. C

    TFS 1.X+ Reward System problem

    Do you have any idea what could make this error happen, so I can try to reproduce and test this possible solution? Thanks both.
  12. C

    TFS 1.X+ Reward System problem

    Some people at some point already complain about not being able to open the loot of monsters that have a reward system, getting the message that you don't own it. I can't reproduce the problem, and the only error I found in the log is the one below. local function pushSeparated(buffer, sep...
  13. C

    [TFS 1.3 - NPC] NPC does not sell new items

    I have the same problem, but with another custom itens. https://otland.net/threads/cant-buy-npc-items.278323/ Unfortunately, I still haven't figured out what are blocking the purchase and look function of these items. TFS 1.3 Downgrade
  14. C

    I can't use a spell in capital letters.

    It worked! Thank you very much.
  15. C

    I can't use a spell in capital letters.

    When I use exani hur "up it works, but EXANI HUR "UP in capital letters does not. Apparently this only happens with exani hur ". If I use EXIVA "PLAYER it works fine. Any suggestion on how to resolve? Thanks TFS 1.3
  16. C

    TFS 1.X+ Gold change bug

    I tried using /i but the same problem occurs, in this case, the change disappears, it doesn't go to the ground. It's a downgrade 1.3 version, probably from 1 year ago. I looked for dropOnGround in my base, but it didn't find anything.
  17. C

    TFS 1.X+ Gold change bug

    Sorry I do not understand. When you say to test this player:addItem, what do you mean? Create with /i to see if it goes to the ground?
  18. C

    TFS 1.X+ Gold change bug

    local config = { [ITEM_GOLD_COIN] = {changeTo = ITEM_PLATINUM_COIN, effect = COLOR_YELLOW}, [ITEM_PLATINUM_COIN] = {changeBack = ITEM_GOLD_COIN, changeTo = ITEM_CRYSTAL_COIN, effect = COLOR_LIGHTBLUE}, [ITEM_CRYSTAL_COIN] = {changeBack = ITEM_PLATINUM_COIN, changeTo = 17100, effect =...
  19. C

    TFS 1.X+ Gold change bug

    When there is no more space available in the inventory, instead of the remaining amount going to the ground when use the gold, it basically disappears. TFS 1.3 Downgrade
  20. C

    TFS 1.X+ You are not the owner

    I have respaw of some mini bosses on the map, made by RME, for example, Jaul, Tanjis, Bragrumol, Mozradek, Falcons, all are configured with a reward system. What happens is that, the first respawn created in the game, if you kill them you can't open the loot, it gives a message that you are not...
Back
Top