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

    TFS master protocol 12.x support [Development Thread]

    Mana shield topic: in my opinion, it should be possible to use old system and the new one(after vocation balance), system selection in config.lua
  2. sharinn

    Item damaged increased

    you have 2 was to get this 1. onhealchange/onmanachange - check if attacker is player and have this item, then incresse damage by 5% 2. make modyfication in src(engine)
  3. sharinn

    Spells exhaust reset after death

    remove condition cleanup in death function, after remove this you keep poison, fire energy etc status after death, you can check every single condition and remove only what you want...
  4. sharinn

    Lua how to transfer Imbuement?

    something like item:transform remove imbu?
  5. sharinn

    Lua TFS 1.3 - Buff spell gives more damage from spells on x seconds.

    easy way(incresse all damage): use onhealthchange/onmanachange creaturescripts register on monster(use onSpawn) and player(use onlogin), get storage/some table value from attacker, if storage/value exist incresse primaryDamage and secondaryDamage. issue: if player death during buff storage stay...
  6. sharinn

    Solved Exp Scroll Problem !

    on login check storage, if storage, if true set exp
  7. sharinn

    How to buff/nerf Imbuiments?

    look in xml folder
  8. sharinn

    C++ IsSupress(type) crash

    change condition enum to 64bit enum ConditionType_t : uint64_t { and when add 31+ bit add like this CONDITION_NEW= static_cast<uint64_t>(1) << 31,
  9. sharinn

    TFS 1.X+ Doubt About How Can I Use Creature Functions in AddEvent?

    player is like poiter in c++, check this script when event will be trigered and player will be offline, 99% chance fto crash server, in addevent add this player.uid instead player, on function check player, if player exist make effect
  10. sharinn

    Remove Skill, Level, and Magic level cap

    did my solution work? :)
  11. sharinn

    trying to start my real map otserver

    Download XAMPP (https://www.apachefriends.org/download.html) and download first :)
  12. sharinn

    trying to start my real map otserver

    if you use xampp and myacc change program(xampp) version :)
  13. sharinn

    NPC seller

    probably you need source code to do this
  14. sharinn

    npc+backpack system trade

    https://otland.net/threads/chest-selling-items-customattribute.273583/ im creating this and want adapt to "attack npc bp" but how send "working" bp to player, player dont own or stay near this container i need place where i can start digging :)
  15. sharinn

    Chest selling items (CustomAttribute)

    #Update I fix this problem :) Thank you for reporting!
  16. sharinn

    Chest selling items (CustomAttribute)

    Hello, I created a script with a chest(we can use all containers) when you move an item out of the chest you buy it. Place code in good place for good formating or items description :) Requirements(look on help code): Container requires a setCustomAttribute("sellChest", 1) Items in chest...
  17. sharinn

    OpenTibia Assets Editor

    Hello im found bug/error idk how call this :D when i save object, switch to another and back to first item flags breaks 1. oryginal 2. edited and safed 3. switched to another item and back
  18. sharinn

    Lua Talkaction Command Save Items Without Clean

    you must store items in db, on shutdown you need save, on start ots you need load this data, how you want fix problem on max item on stack? unmoveable and unpickable in otsglobalbr its easy, you set item action to 100, o
  19. sharinn

    why is it not working?

    attacker check if attacker isPlayer, then send to him info, you can get error when monster attack you and you try send text to him
Back
Top