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

Recent content by CastorFlynn

  1. C

    Why do oldschool servers not last?

    This is happening across all versions. Apparently, the community is broken, thinking only about external profits from the sale of gold, items, and characters. There is an expectation that the server will not last more than 1 month. These players, especially guild members, rush in the first and...
  2. C

    TFS 1.X+ Spell Monster Damage

    It didn't work
  3. C

    TFS 1.X+ Spell Monster Damage

    I'm trying to create a creature that, when casting a custom spell, would apply area damage and then be removed. When casting the spell, the creature sends the effect, but deals no damage. local combat = Combat() combat:setParameter(COMBAT_PARAM_TYPE, COMBAT_EARTHDAMAGE)...
  4. C

    TFS 1.X+ Optimizing player saves & when saves execute

    I really get excited when someone takes the initiative to optimize TFS, but apparently people underestimate the number of players a server can have and especially the number of parallel scripts running. I believe the first step was to continue what Gesior had already started with binary saves...
  5. C

    Lua player:addItemEx(item) best practice

    Comparing the two codes, which would be the most logical and safe? local shovel = TalkAction("!shovel") local cost = 100 function shovel.onSay(player, words, param) local item = Game.createItem(2554, 1) if not item then player:sendCancelMessage("An error occurred while...
  6. C

    TFS 1.X+ Check tile/item elevation

    Thanks! You are the man!
  7. C

    TFS 1.X+ Check tile/item elevation

    Is there any way to check if an item has an elevation in TFS 1.3+?
  8. C

    RME Teleports losing destination

    I turned some items in teleport in items.XML (same file in server and RME). I set destinations in RME for these new teleports. It worked, but over time the positions disappear. Has anyone been through this and knows what causes it? RME OTA 4.1.2
  9. C

    TFS 1.X+ Bank Withdraw Gold checks

    It worked! Thank you!
  10. C

    TFS 1.X+ Bank Withdraw Gold checks

    Unfortunately it didn't work. The free slots were filled, but the rest went to the ground.
  11. C

    TFS 1.X+ Bank Withdraw Gold checks

    The bank script does not have a check for free slots in the player's container. When withdrawing amounts that occupy more slots, items are thrown to the floor. Apparently there is no specific function in TFS for this, how could this check be done before handing over the gold to the player...
  12. C

    TFS 1.X+ Crash getOutfitByLookType

    TFS 1.3+ After the server save the server crashed after 2 minutes and did not return. The website was also offline until the tfs screen on Ubuntu was closed. In the last log record there were 25 players online, the same number of console errors. Console error log: [Error - mysql_real_query]...
  13. C

    TFS 1.X+ Invisible/Ghost Effect

    I would like to change the effect of the invisible/ghost mod. I tried to find the code where the effect is set in the source, but I couldn't find it. Could anyone tell me where or how the effect is determined?
  14. C

    TFS 1.X+ Teleport Function

    I'm trying to assign the teleport function to an item. I modified the XML, it now allows destination assignment in RME. I set the coordinate, but when passing by the item nothing happens. Is there any other configuration required for it to work? <item id="25403" article="a" name="ultimate...
  15. C

    Lua addEvent/stopEvent remove item

    In this creaturescript code, when a creature is killed, a green vortex is created. If the same creature dies in the position of the green vortex, it turns purple and, with the same logic, turns red. I would like each vortex created/transformed to have 30 seconds before being removed. So if the...
Back
Top