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

    OTClient OTCV8: WARNING: attempt to destroy widget 'widget1321' two times

    Thats normally because a widget is trying to be destroyed twice. Probably once on logout and some other place. If you have any custom one, check there.
  2. Aeronx

    CipSoft's "Creator" software (Map Editor and more)

    Thats a custom rme, right?
  3. Aeronx

    OTClient createWidget is it possible to display text on x,y,z

    on this code there's both of them and you posted it local tile = g_map.getTile(tilePos) tile:setWidget(widget)
  4. Aeronx

    OTClient createWidget is it possible to display text on x,y,z

    you forgot numerous things. widget:setPosition() and tile and tile:attach Also, tiles erase the widget once you get away from it, so you need a way to create and reattach that widget but for me, what you need to accomplish seems easier dealt throught server-side? just loop a text with...
  5. Aeronx

    Damage Into Percent?

    Instead of % which feels really clucky.. you should go for using 1kk for example like many games do if you dont want to see really big numbers. This is easily doable with a small source change
  6. Aeronx

    OTClient Where are otclient's tooltips handled?

    You can do things basically, and its what oen said. You can change the text and give it a color or create a new widget that will be called onHoverChange and give it different text colors. Second choice is way more versatile, but you do need some knowledge on coding OTC modules. You need 3 things...
  7. Aeronx

    [OTCv8] Auras and wings

    ... its already open source...
  8. Aeronx

    CreatureEvent [TFS 1.3 / 1.4] Upgrade System

    Why the hell is people complaining about free stuff? There's a few outputs here. 1. Use it as it is. 2. Change it as you feel fit. 3. Try to do the same from scrap. Other than that, feels ungratefull to even complain when we all are getting most of the code written already. I know many people...
  9. Aeronx

    Lua Xikini's Free Scripting Service TFS 1.4.2

    onUse the lever, check for getSpectators. If spectatorsName == BOSSNAME.. pull the lever..
  10. Aeronx

    Lua Xikini's Free Scripting Service TFS 1.4.2

    @Xikini people missed you man :')
  11. Aeronx

    Advanced Ice Storm Spell

    use 2 instead of 3...
  12. Aeronx

    TFS A* Algorithm :D

    @Itutorial I've been implementing those changes, but something is wrong with this: void Game::checkCreaturesPath(size_t index) { g_scheduler.addEvent(createSchedulerTask(EVENT_CREATURE_PATH_INTERVAL, [=, this]() { checkCreatures((index + 1) %...
  13. Aeronx

    TFS 1.X+ Wrath of the emperor, duplicated spawn when boss dies.

    You are calling twice game.createMonster... once onkill and once onDeath
  14. Aeronx

    Tibia not Tibia - Development Thread

    Jisus @oen432 ! Always amazing! great work man!
  15. Aeronx

    Lua Xikini's Free Scripting Service TFS 1.4.2

    Hey man! here goes 2 request. Feel free to ask if you feel there's more info needed. 1. Chain Quest system. - 1 or more NPCs that give you different quest, each quests chains with another quests. Quests should be from turning in items, killing X monter(s), using X item (storage or similar in...
  16. Aeronx

    DPS Tracker

    Working perfectly! Great Xikini! Great! :)
  17. Aeronx

    Lua Xikini's Free Scripting Service TFS 1.4.2

    Hey @Xikini , since i've seen you testing and learning few things on your streaming, what about damageMap? Lets say a script that calculates damage done per second (DPS) of all the players who attack the target and after it dies or certain amount of time, a window pops up and show names and...
  18. Aeronx

    Lua Xikini's Free Scripting Service TFS 1.4.2

    TFS 1.4.2 already has critical strike as attribute you just need an action that adds critical to the item. enum SpecialSkills_t { SPECIALSKILL_CRITICALHITCHANCE, SPECIALSKILL_CRITICALHITAMOUNT, SPECIALSKILL_LIFELEECHCHANCE, SPECIALSKILL_LIFELEECHAMOUNT...
  19. Aeronx

    Lua Xikini's Free Scripting Service TFS 1.4.2

    There's tons of systems like that on the forum ready to copy and run. :)
  20. Aeronx

    How people you got TFS 1.5 if last compile is 1.4.2?

    You only need to search a bit. 1.5 is a special branch by @Nekiro that downgraded the main version to 8.X
Back
Top