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

  1. krafttomten

    Solved Weird monster behaviour in TFS 1.1?

    A better question is, why is the monster behavior optimization not in the main branch? The main reason not to use it seems to be server preformance issues. But this is only a problem with large amount of players. The servers with such vast amount of players should be much better equipped to...
  2. krafttomten

    How to: Tree bridge (River)

    These are often at the start of the function, because if this condition is true, you don't really want to evaluate anything else when walking on/off that tile. So it is the first thing that comes after running the functions. The "return true" basically means that the script is telling your TFS...
  3. krafttomten

    How to: Tree bridge (River)

    I eventually solved this by adding an exception in the swimming.lua file: if item.actionid == 13338 then return true end Then I just add that action ID to any walkable water I don't want to swim in, i.e. water under logs.
  4. krafttomten

    [Crimson OT] -- 100% Custom OT -- Showoff

    Lava flows towards ground and cools off when flowing over it, so to my mind it makes sense why the basalt would have an edge that is moving away from the lava, not towards it. They are not from nomads, it's military. I totally agree about the bamboo bridge hahah! Also weird when the dragons...
  5. krafttomten

    [Crimson OT] -- 100% Custom OT -- Showoff

    I felt like updating this thread with some more pictures, so here goes!
  6. krafttomten

    Crimson OT -- Looking for Testers -- The Day is Finally Here!

    Final Update! Today the server starts. Today is the last chance to apply for participation in this two weeks long event. Trust me, you want to try this server out! This is not just another grind machine. This server will be exciting and intense, where you players need to develop good relations...
  7. krafttomten

    Crimson OT -- Looking for Testers -- The Day is Finally Here!

    Update #4 The website is now open for the participants to create their characters and accounts! It will only be open today and tomorrow. To be extra clear, after 00:00 (GMT+1) on Friday 14th Oct it will no longer be possible to create an account to join this over two weeks long event! The...
  8. krafttomten

    Crimson OT -- Looking for Testers -- The Day is Finally Here!

    Update #3 We're starting to reach the goal of 20 testers, amazing! We still have a room for a couple more people so you still have a chance to join in! This is the final plan for the launch. We will start up the server this Friday (Oct. 14th) on 18:00 GMT+1. The server will then be open until...
  9. krafttomten

    Crimson OT -- Looking for Testers -- The Day is Finally Here!

    Update #2 We are currently 11 players ready for launch. We still want more! Come on OTland, I've been on this forum long enough to have seen how much you want a server like this one. Don't miss this opportunity! Did I say that the server is 100% free, no pay to win whatsoever and not even any...
  10. krafttomten

    Lua Spell for monster to heal a specific boss

    local config = { level = 70, magicLevel = 40, targetName = "Specific Boss Name" } local combat = Combat() combat:setParameter(COMBAT_PARAM_DISPEL, CONDITION_PARALYZE) combat:setArea(createCombatArea(AREA_CIRCLE6X6)) function onTargetCreature(creature, target) if target:isPlayer()...
  11. krafttomten

    RevScripts check in various areas

    Have you written that code or are you trying to modify someone else's code? But I can tell you that it is possible to achieve what you are trying to do, and using spectators is one way to do it. Here are some things I thought about when reading that code: 1. All your areas are the same area...
  12. krafttomten

    Lua Spell for monster to heal a specific boss

    Not entirely sure why it wouldn't work. It might be that you have written target, max and min values + attributes. I don't think you should have that. This is how I have it setup: <attack name="bosshealer" interval="2000" chance="100" /> <instant name="bosshealer" words="###60" aggressive="1"...
  13. krafttomten

    Lua Spell for monster to heal a specific boss

    Try with this script. local config = { level = 70, magicLevel = 40, targetName = "Specific Boss Name" } local combat = Combat() combat:setParameter(COMBAT_PARAM_DISPEL, CONDITION_PARALYZE) combat:setArea(createCombatArea(AREA_CIRCLE6X6)) function onTargetCreature(creature, target)...
  14. krafttomten

    Crimson OT -- Looking for Testers -- The Day is Finally Here!

    Update #1 We are currently trying to gather a bunch of people to test the server. Once we have all the players everybody will start at the same time. Hopefully we get more than 20 testers! To join, send me a message here on otland or on discord (noobgandalf#3681) and tell me what vocation you...
  15. krafttomten

    TFS 1.X+ Crowbar in Mailbox <3 tfs 1.5

    You should have all the functions and syntax you need to make this happen. Just take it one step at a time and make sure that every single step works the way you want. Don't use the player:setStorageValue() function until you are 100% certain that it works. Instead, use the...
Back
Top