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

    Lua Area spell to heal only user and user's summons?

    Yep, onTargetCreature callback would do the trick.
  2. Hermes

    Lua Area spell to heal only user and user's summons?

    You will have to check every creature in area. If the creature is monster and it's master is cid -> heal. If the creature is player and the player is in party with cid -> heal. All neccessary functions are present in the newest tfs.
  3. Hermes

    Lua Just A Question

    You can get some essential knowledge from this LUA manual: Lua 5.1 Reference Manual - contents Then you will have to practice, practice even more and soon you would become a pro : p
  4. Hermes

    Lua PVP Arena ! How can I do that players doesn't die!

    CYKO IS `WORNG` LOL! We actually are able to use custom position. This is the `demo` version of the script I am using (I won't release entire one okej :C) local arena = { from = {x = 560, y = 301, z = 11}, to = {x = 571, y = 307, z = 11}, exit = {x = 556, y = 303, z = 10} } function...
  5. Hermes

    vocation attackspeed on TFS 0.3.6

    You can change the value in creature.h, but it would probably take more resources to handle higher amount of `think` events. Otherwise you can just set attackspeed to it's maximum default value - 500.
  6. Hermes

    faster regeneration attribute

    <attribute key="showattributes" value="1" />
  7. Hermes

    Any dubstep/drum n base fans here?

    Black Sun Empire & check the signature : D
  8. Hermes

    Lighttpd or Nginx?

    Nginx requires some more experience. If you want to run one simple website - use lighttpd. You can limit SYN packets using iptables entries - it won't make you completely safe, but you will be safer.
  9. Hermes

    Solved /attr not working

    AFAIK you have to determine the data type in command like: /attr set number attack 100 /attr set text description "Blabla."
  10. Hermes

    [Poland, 8.6] The World of Neravia 3

    Many improvements were implemented. Still can't get daopay working :/
  11. Hermes

    /m error

    It's normal. Script prints an error because there's no check if the creature exists. Same in all TFS versions. Live with it.
  12. Hermes

    Windows Modern AAC Layout problem

    Well, it's like in wypas.eu. The JavaScript makes the noise effect in title, it's cool imho. Just remove it and it's gonna return to normal state.
  13. Hermes

    Liczba graczy na OTS

    To zagraj na Neravii. Oprócz tych wszystkich projektów `dla pieniędzy` prowadzę również popularny od lat w Polsce serwer. Mimo wszystkich moich starań, mimo stabilności silnika i niezawodności jako takiej serwera dedykowanego nie potrafię zdobyć większej ilości graczy na tak małym expie...
  14. Hermes

    TalkAction Achievements LIB/Talkaction

    A bunch of fixes and optimizations in functions: -- achievements functions by Renusek, Darkhaos and Hermes. ACHIEVEMENTS = { -- `secret` tag is used in Cipsoft' Tibia website to show image `SECRET` next to the achievement name - there are 45 secret achievements -- Table example: [0] = {name...
  15. Hermes

    Selling Gm/players anty-hack security!

    You can trust this guy. PS. What if somebody has dynamic ip?
  16. Hermes

    [8.7] The Forgotten Server v0.2.10 (Mystic Spirit)

    I am also having a problem with charges. It seems that many revisions are affected (I am using 3884 trunk). Charges aren't saving properly, just enchant some weapon (for example war axe). After those 1000 charges item goes back to normal, but charges aren't being reset. Unenchanted war axe has...
  17. Hermes

    [Poland, 8.6] The World of Neravia 3

    Tests are over. You can create your accounts and characters now. There's a problem with my daopay account, so Neravia won't support other countries but Poland. But still, our shop is going to be poor - Neravia was the server for players, not for money. We got our servers for money ;)
  18. Hermes

    FORMULA_LEVELMAGIC and other formulas.

    Yep, it's there. Thanks for the clue : D. Now those mina, minb and maxa, maxb values.
  19. Hermes

    FORMULA_LEVELMAGIC and other formulas.

    It is, but still, every formula in spells is based on the 4 values :f.
  20. Hermes

    FORMULA_LEVELMAGIC and other formulas.

    Hello. I am trying to get how these formulas are working. I mean something like this: setAttackFormula(combat, COMBAT_FORMULA_LEVELMAGIC, 6.5, 6.5, 5.5, 7.5) the part in source concerned with this: case FORMULA_LEVELMAGIC: { min = (int32_t)((player->getLevel() / minl + player->getMagicLevel()...
Back
Top