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

Search results

  1. Mr Trala

    OpenTibia Sprite Pack

    How nice of you @Sajgon
  2. Mr Trala

    [OTClient Showoff] Show off your OTClient project/module/UI and other

    Spell Tree and Wing level up system for Trinity:
  3. Mr Trala

    Spell which gives you speed

    Just tried in a fresh install and it actually worked, maybe you are trying with GOD/Gm character or a high leveled character and he's at the speed limit?
  4. Mr Trala

    Solved Simple question about vocations.xml

    Applies to all created characters with that vocation.
  5. Mr Trala

    Fade tile

    It is indeed OTC with some Source/lua changes What you want to change is in mapview.cpp
  6. Mr Trala

    Solved custom_droploot.lua not working

    Just tested it in a fresh TFS install and is working properly, are you sure you registered it in login.lua? player:registerEvent("CustomDropLoot") Ignore my post just saw your edit rofl.
  7. Mr Trala

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

    local combat = Combat() combat:setParameter(COMBAT_PARAM_DISPEL, CONDITION_PARALYZE) combat:setParameter(COMBAT_PARAM_AGGRESSIVE, false) combat:setArea(createCombatArea(AREA_CIRCLE3X3)) local healMonsters = false function onTargetCreature(creature, target) local player =...
  8. Mr Trala

    TFS 0.X svargrond arena script problem

    Hum I don't really know 0.4 but let's try anyways. Post your data/lib/000-constant.lua
  9. Mr Trala

    TFS 0.X svargrond arena script problem

    Post your data/global.lua
  10. Mr Trala

    [Summer Update 2018][Deathlings] Maps Deepling Ancestorial Grounds and Sunken Temple

    Then is both your faults, Kito for being impatient and you for not answering his PMs here in Otland seeing as you still don't deny that you were active here.
  11. Mr Trala

    Only loginserver with OTClient

    You are right, my bad :P.
  12. Mr Trala

    Only loginserver with OTClient

    Are you using 1.x? If so, why not just use Player.isUsingOtClient(self)?
  13. Mr Trala

    [Summer Update 2018][Deathlings] Maps Deepling Ancestorial Grounds and Sunken Temple

    All this drama for some Tibia RL maps that can be done in a few hours? smh
  14. Mr Trala

    Lua Anti-Aimbot script, not working as intended.

    iirc bots (advanced ones that's it IE: xeno and wind) can't really be tell what to do by the server, so even if you tell the client to attack X creature the bot will persist with the other one till it dies. What @Apollos suggested sounds about right, save position of player then teleport it...
  15. Mr Trala

    Solved explosion rune custom adding skill not working tfs 1.3

    I mentioned CreatureScript since that's the most logical place with an onHealthChange, that or you are using a Stat system or something that is affecting the output of the spell, I'm afraid I can't help you further since the formula it is working as intended in a normal TFS 1.3 installation.
  16. Mr Trala

    Solved explosion rune custom adding skill not working tfs 1.3

    Then you must be using another CreatureScript since I just tested it and is working as intended: Weapon attack 1: 23:42 A pharaoh loses 340 hitpoints due to your attack. Weapon attack 99999: 23:42 A pharaoh loses 344 hitpoints due to your attack. 23:42 A pharaoh loses 352 hitpoints due to your...
  17. Mr Trala

    Solved explosion rune custom adding skill not working tfs 1.3

    Far as I can see Weapon ATK is not a factor in that formula, try to use a 999 Weapon ATK to confirm.
  18. Mr Trala

    Solved explosion rune custom adding skill not working tfs 1.3

    local combat = Combat() combat:setParameter(COMBAT_PARAM_TYPE, COMBAT_PHYSICALDAMAGE) combat:setParameter(COMBAT_PARAM_EFFECT, 381) combat:setParameter(COMBAT_PARAM_DISTANCEEFFECT, CONST_ANI_EXPLOSION) combat:setParameter(COMBAT_PARAM_BLOCKARMOR, true)...
  19. Mr Trala

    Anyone else miss the evo spams?

    Will for sure play an EVO that implements a random loot style, and seeing as there are a shit ton of free maps (Of hunt zones) here in otland no necessarily needed to put ugly ass maps like in the past.
  20. Mr Trala

    TFS 1.X+ How to modify this event (Two thinks)

    I didn't like how all the system was done, so I just remade it for you (Taking into consideration that you want all of it in just 1 table): Add to your data/global.lua: monsterSystem = { [1] = {name = "rat", pos = Position(1000, 1000, 7), expReward = 5000, goldReward = 1000}, [2] =...
Back
Top