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

    Is tibia still alive?

    I mean, games with less than 10k players aren't really considered ALIVE. Even less when it's an MMORPG in question. I guess you could say that Tibia went from being an MMORPG to an MORPG.
  2. Demnish

    Programmer I am looking for someone to crack a software.

    You can do it yourself with a google search and OllyDbg.
  3. Demnish

    Programmer Developer needed

    You know that most of these stuff can be found for free just by searching these forums?
  4. Demnish

    TFS 1.X+ [TFS 1.3] Multiple dispel condition on a spell?

    I haven't played any 10.98, so I don't know how it should work. HOWEVER, the healing spells do come with an included "DISPEL CONDITION_PARALYZE" param. So I'm scratching my head as to why I can only heal Paralyze with Haste and not healing spells. If this is how it is supposed to be in 10.98 I...
  5. Demnish

    TFS 1.X+ [TFS 1.3] What could be wrong with this onHealthChange?

    You're a legend mate, thank you. :D Didn't know primary/secondaryType worked that way. Do you know any good place I can read up on stuff like this? Here is the script for those that wants it: function onHealthChange(creature, attacker, primaryDamage, primaryType, secondaryDamage...
  6. Demnish

    TFS 1.X+ [TFS 1.3] What could be wrong with this onHealthChange?

    But having "-primaryDamage" for example won't make the damage positive aka heal. So I'm quite at a loss on how to best implement this script. 🤔
  7. Demnish

    Compiling help TFS 1.3 vcpkg compile

    ./vcpkg integrate install after and not before all packages have been downloaded and installed.
  8. Demnish

    GM Comands

    Well it isn't TFS 1.3 I can tell you that much.
  9. Demnish

    [Bug Report] Whirlwind Throw + Ice Rapier

    Since Ice Rapier(Sword Type) has only 1 charge, it disappears when the spell is cast, due to this the spell can't find the CONST_ANI_WEAPON from it; This results in a CONST_ANI_NONE. Now this would apply to all weapons which is on its last charge and that doesn't transform into another weapon.
  10. Demnish

    Monster [TFS 1.3] [Windows] Monster Folders Auto-Remover

    No idea, but personally this works and I enjoy writing code so it's a win-win for me. ;)
  11. Demnish

    Any “Serious” Servers out there?

    @Iryont Well if you're happy doing what you're doing then keep doing it.
  12. Demnish

    Any “Serious” Servers out there?

    @Iryont I know what you mean, however. If you take a look at Classic WoW, you see that die hard fans are the most devoted and is the ones you want to keep happy as customers. Because they're aren't hard to please and value their nostalgia more than others, also most of them are adults with jobs...
  13. Demnish

    Any “Serious” Servers out there?

    @ForsakenPulse Yeah I understand as well why it was implemented, however its a duct tape fix at best and such things should only be temporary. Numbers never lie and people have been unhappy with the system. @Iryont How can a personal opinion not make any sense? Such a statement doesn't make any...
  14. Demnish

    TFS 0.X Does the RAM increase while the server is online?

    You would be much better off using the latest TFS version available since it easy to keep up with git hub fixes and you can be sure it is maintainted. Also the help you can get with your server dramatically increases due to many others using TFS 1.3.
  15. Demnish

    Monster [TFS 1.3] [Windows] Monster Folders Auto-Remover

    I'm more of a alphabetical lazy guy, so I wrote a script to make life easier. :cool: Works for TFS 1.3, as long as the folder structure is intact. (Windows Only) If you want it to work for other distros or setups you'll just have to edit the .txt file. The file to run is a .bat file which can...
  16. Demnish

    TFS 1.X+ [TFS 1.3] What could be wrong with this onHealthChange?

    Thank you, it worked. :D However I can't seem to use these: primaryDamage = -primaryDamage secondaryDamage = -secondaryDamage Any ideas on an alternative? Because - doesn't work. EDIT: Never mind, I solved it. This works until a better method has been found: function onHealthChange(creature...
  17. Demnish

    TFS 1.X+ [TFS 1.3] What could be wrong with this onHealthChange?

    Trying to add a boss monster which gets healed instead of damaged when it has a certain outfit: function onHealthChange(creature, attacker, primaryDamage, primaryType, secondaryDamage, secondaryType, origin) if attacker then if creature:getOutfit() == 9 then primaryDamage...
  18. Demnish

    someone is creating money on my server

    You do know that after you've found the problem you have to reset, right?
  19. Demnish

    TFS 1.X+ [TFS 1.3] onHealthChange problems

    Somehow, I don't have that problem. But I more or less have a clean and recent version of TFS 1.3. (With 100% Crit Chance) This is the code I have; which doesn't seem to be affected by the crit system: if potion.health then doTargetCombatHealth(0, target, COMBAT_HEALING...
Back
Top