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

    Lua Dawnport vocation changer

    Wouldn't it be best to give them the additional hp/mana while in dawnport so they "get a feel for the vocations benefits". Once they travel to main, run a script that sets their max health/mana to the proper amounts. If this solution is not acceptable, you will need to make sure that the skill...
  2. Xagul

    Lua any loop for this?, ARE These Line harmful?

    What you have should be fine but as Znote said, there are some duplicates that don't really seem to serve a purpose. Also another way it could be done is setting the positions outside of the function as offsets and then apply them as you need them. Not having to build the table every time the...
  3. Xagul

    Server log shows how much other player hits (remove)

    Is there a reason why this player choice is not good enough? It has been around for quite a while (I think since 10.x in general?). If you really need to remove it completely then you will need to search for any use of MESSAGE_DAMAGE_OTHERS, MESSAGE_HEALED_OTHERS, and MESSAGE_EXPERIENCE_OTHERS
  4. Xagul

    Project X? Maybe... (10.++ XDC)

    Working on some UI improvements now, here is some of what I have so far.
  5. Xagul

    Project X? Maybe... (10.++ XDC)

    Not really a whole lot of interesting stuff to show, just working on art.
  6. Xagul

    Haste gives haste symbol

    That's odd, I wonder if the dat or spr contains any info on those symbols then... I would have to dig a bit to find out for sure.
  7. Xagul

    Server log shows how much other player hits (remove)

    You can disable it in your client options if you don't want to see it. It's located in the console section.
  8. Xagul

    TFS 0.X Give items only for a player

    Tag them with an attribute (something like "untradable") and then check for that attribute in any situation you can think of where a player could "trade" the item. Off the top of my head: trading, moving item into map/house (and containers in map), putting in equipment slot and swapping it with...
  9. Xagul

    Lua How to use more than one addEvent in a script?

    The reason it was spamming errors before is because it was running an action on a creature that no longer exists, this happens in many different situations, the general rule is that if you are using addEvent to run an action on something, you should always check that the thing still exists when...
  10. Xagul

    I cannot login to my own server.

    Try using several different IPs to connect. 127.0.0.1, localhost, and your computers ip (usually something like 192.168.x.x). If you manage to connect to the character list but cannot connect to the game world with a character on your account... Some modems/routers have an issue which as far as...
  11. Xagul

    Haste gives haste symbol

    Since you added the buff icon and it shows a black square, that means the way your icons are formatted in the .pic file is incorrect. You might have to start over with a new pic and add your changes 1 by 1 until you figure out what change is causing it to break. My best guess is that one of your...
  12. Xagul

    Project X? Maybe... (10.++ XDC)

    I was trying my best to keep support for both the normal client and ot client but with the current issues between cip and ots, I think it will be best to completely split away from tibia. Time to add new artwork!
  13. Xagul

    You can die in peace after watching this video

    The feels are reals :( On a side note its actually crazy that Goobers is still online, I think that guy uses the server for other things and just forgot he has the OT running and so it just goes and goes.
  14. Xagul

    Spamming spell kicks from server

    Things like !deathlist query the database and are talkactions which means normally a player can use it as often as they like. This opens up the possibility for abuse if say a player was to mass log dozens of characters and spam !deathlist 100x a second. This problem is not just limited to...
  15. Xagul

    TFS 1.X+ 21:41 Player B loses 66 hitpoints due to an attack by a minotaur archer.

    This is intended behavior. If you don't want to see that message you can disable it in your client options (in the console section).
  16. Xagul

    Spamming spell kicks from server

    OTs have been hosted for over a decade without limiting packets per second at all and the servers back then were far less optimized than what TFS is now. If you increase that limit to say 75 or 100 it isn't going to hurt anything, as long as you have some sort of reasonable limit to prevent...
  17. Xagul

    Item that deals 5% more

    You must check to make sure: Attacker exists (onHealthChange) fires when for example a player/monster takes field dmg. (this is already in your script btw) In this situation you must ensure that the attacker is a player (monsters cannot have a ring thus ring will be nil) Ensure the ring exists...
  18. Xagul

    premium soul

    Just checked the github and it doesn't seem there is a way to set max soul. You will have to add it yourself I suppose :(.
  19. Xagul

    Item that deals 5% more

    You have to add it to each monsters xml. Not sure if there is a method to add it to every monster yet. <script> <event name="ringDamage"/> </script>
  20. Xagul

    [Lua] [TFS 1.3] I Pay $20 Usd (Voucher Random, give items or mounts or addon)

    I'm confused... It seems you have most if not all the code needed to create this, and you have the idea in your head how you want it. What exactly is it you need us to do here?
Back
Top