• 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

    vcpkg libmariadb

    If this is the truth, then it's all good, but this error has been there since at least May 2019. I really don't feel like switching OS or even installing an additional one just to compile an OT Server. Hope it gets fixed!
  2. Demnish

    TFS 1.X+ Error installing VCPKG

    This is still an issue, getting met with the exact same problem. libmariadb:x64 being rather annoying, it's been bug reported but Microsoft doing the usual nothing.
  3. Demnish

    Lua [TFS Master] [Talkaction] Buy AOL Script

    So all I had to do was move local playerCap = player:getFreeCapacity() sigh Thanks a lot Evil Puncker! :)
  4. Demnish

    Lua [TFS Master] [Talkaction] Buy AOL Script

    Need some help with my !aol script which errors out. It looks good to me, so I need some assistance as to why it does. Code: local config = { itemId = ITEM_AMULETOFLOSS, price = 50000 } local itemType = ItemType(config.itemId) local itemWeight = itemType:getWeight() local playerCap =...
  5. Demnish

    TFS 1.X+ [Solved] Group Flags not working

    Remove thread please, I went full r-tard..
  6. Demnish

    Lua [TFS 1.2] Polymorph Rune

    bump
  7. Demnish

    Lua [TFS 1.2] Polymorph Rune

    This is my script, I've commented on which does what and if they work or not: (It is based on the paralyze rune script) local combat = Combat() combat:setParameter(COMBAT_PARAM_EFFECT, CONST_ME_POFF) combat:setParameter(COMBAT_PARAM_DISPEL, CONDITION_HASTE) --Manashield takes priority so haste...
  8. Demnish

    TFS 1.X+ Mass Healing effect and heal target in area instead of area effect

    What Mr Trala posted, remove: combat:setParameter(COMBAT_PARAM_EFFECT, CONST_ME_MAGIC_BLUE) and target:getPosition():sendMagicEffect(CONST_ME_MAGIC_BLUE) Those particular lines is the magic effect. Remember to play around with your scripts, but be sure to make a backup. Then you can test out...
  9. Demnish

    Compiling [TFS 1.2] Unresolved External Symbol VC17

    TFS 1.2, VC17, Boost 1.68 (latest) Here is the error log: (I have absolutely no idea how to fix this one) Been at it for several hours now, seems a lot of people have this problem with the TFS 1.2 sources but they're all different. I'm a complete beginner when it comes to compiling and I...
  10. Demnish

    SPR/DAT Editor 10.98

    Is there anyone here that possess such a legendary program? Can't find a single link or forum post that contains this myth! If you do have it, please share it with us, it is very much needed. :)
  11. Demnish

    Solved custom_droploot.lua not working

    Done. However it still won't work, it's wierd because it should. At least when I look at the code it doesn't looks like there is any problems? :confused: EDIT: Added the original droploot.lua to my first post. EDIT2: Nvm, fml, forgot to register it in login.lua.. :rolleyes: Thank you Vulcan_!
  12. Demnish

    Solved custom_droploot.lua not working

    SOLVED TFS 1.2 custom_droploot.lua: local itemDeathDrop = ITEM_PLATINUM_COIN local itemAmount = 10 function onDeath(player, corpse, killer, mostDamage, unjustified, mostDamage_unjustified) if getPlayerFlagValue(player, PlayerFlag_NotGenerateLoot) or player:getVocation():getId() ==...
  13. Demnish

    OTClient Compile problems.

    The problem is there exists an old version of the boost in the "standard" boost folder that comes with the project: But I am using 1_68 boost (due to problems with the 1_63) and that folder does not contain such a file, which led me to the conclusion that I have to create it. I've searched the...
  14. Demnish

    OTClient Compile problems.

    bump
  15. Demnish

    OTClient Compile problems.

    I got this error when trying to compile x32: The file simply does not exist anywhere. I've followed this tutorial to 100% for VC17: edubart/otclient Would greatly appreciate some help, I don't know how to build a boost. Maybe someone could teach me the ways or point me in the right direction?
  16. Demnish

    Lua Anti-Aimbot script, not working as intended.

    But isn't it wierd how "target:sendCancelTarget()" actually removes the Red Square on the client? Could it just be that "setTarget" is incomplete and can be improved in the sources?
  17. Demnish

    Lua Anti-Aimbot script, not working as intended.

    I appreciate it mate, I'm thankful for your time. :) I wouldn't manage this on my own, my skills in LUA and OT overall is not at the required level that it needs to be for this task.
  18. Demnish

    Lua Anti-Aimbot script, not working as intended.

    Indeed, however I still need to add the NetworkMessage for the "square change" but I have no knowledge at all in network messages.
  19. Demnish

    Lua Anti-Aimbot script, not working as intended.

    It actually works, as far as completely removing the target (Red Square) and the ability to shoot SD runes on the players current target However, it does not really switch target to the assigned one, it still just autoattacks it. This does not however prove that the bots won't be able to, but...
  20. Demnish

    C++ Old burst arrow formula

    I have never seen Burst Arrows being hardcoded before, but it's easy to edit the script I sent you to get you the results you want. This is the only important part more or less: function onGetFormulaValues(player, level, maglevel) local min = (maglevel * 1) + 5 local max = (maglevel *...
Back
Top