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

    [France] [8.6] AcidsOT

    12 August 2021 Self paralyze removed from Paladin Sharpshooter spell. Special spell created for Druids: Cheat Death. Costs 50 soul points and 500 mana will protect a player from death once and instead give a 33% heal. Protection lasts up to 5 minutes. 13 August 2021 Added great fire wave...
  2. Znote

    [France] [8.6] AcidsOT

    Latest changelog: 10 August 2021 (17:24) Restrict Teleport to travel island to level 30+ to avoid confusing new players. 10 August 2021 (18:10) Dufi now sells Life rings for 900gp. Esrik and Alesar buys more low level loot items. Server save: 11 August 2021 (10:00) Changed troll cave...
  3. Znote

    TFS 1.X+ Replace Words

    Sounds like this can be resolved with an onSay eventcallback. https://otland.net/threads/tfs-1-x-how-to-create-new-callbacks.235294/ The default code in this tutorial appears to be just that.
  4. Znote

    [France] [8.6] AcidsOT

    Launch was an interesting experience. :P We did get an initial wave of players eager to give us a chance. Over the first hour roughly 40 accounts logged in. Unfortunately pretty much all the new players quit the server pretty quickly. Unfortunately the launch was a massive failure on my...
  5. Znote

    [France] [8.6] AcidsOT

    We are go for launch in less than 1 hour! (18:00 CEST) See you in-game! :)
  6. Znote

    [France] [8.6] AcidsOT

    Greetings @M0ustafa! Everybody starts with 3 days of premium (which will be refreshed for all below it on launch hour). Guilds don't expire when a premium account expires. (as far as I know, going to double check this today) If you recruit your friends using referral system, for every character...
  7. Znote

    AAC Problem [Znote AAC] | Field 'vote' doesn't have a default value

    SQL Error in this context means there is an issue with the compatibility between your database structure and the website. The column vote is not a standard part of TFS accounts table schema...
  8. Znote

    [France] [8.6] AcidsOT

    Haha, I got it mixed up! x) Friday 6th of August in the CEST timezone. :p
  9. Znote

    [France] [8.6] AcidsOT

    Remember AcidsOT? Its a really old server, popular a good 13-15 years ago. Hehh, what happens when you mix open source development with marketing? It started as a development project to test out @Nekiro TFS downgrades (8.6 protocol branch). I was also testing how easy it was to migrate from...
  10. Znote

    AAC Znote acc characterprofile

    This part displays the current skill parts: https://github.com/Znote/ZnoteAAC/blob/ec55497c5abcad662489e6616d726e749a9e1bb3/characterprofile.php#L331-L350 <?php if ($config['EQ_shower']['skills']): ?> <div id="piv_s"> <img class="bg" src="/engine/img/skillsbackground.png">...
  11. Znote

    PHP Extension APCU not working

    Not sure why php APCu is not a part of uniform server, it was before. (so you could only edit php.ini file and uncomment a line to enable it, or just select it in the UI under PHP Accelerators). Perhaps because they ship PHP 8.0 now, and in the early days of 8.0 it wasn't supported. (I think it...
  12. Znote

    [8.60/8.00/7.72] Clean TFS 1.5 Downport

    I have been actively testing the 8.6 port for quite a while now, and I can say it is amazing. Its running very smoothly, and I am looking forward to launch a project with it. :) It is a clean, no bullshit protocol downport of otland/forgottenserver. It works great with 8.6 cip client and...
  13. Znote

    New idea for AAC - FreshAAC

    Nelua compiles to C, so yes, very cool performance-wise. You can quickly prototype, and when needed Nelua has C-like low level features to allow micro-optimizing parts of the code when needed. Nelua is being developed by a Lua lover who, after years of using Lua in game projects, wished for a...
  14. Znote

    New idea for AAC - FreshAAC

    New projects are always fun. :) Having the backend more or less purely as a JSON API, like DevAAC would enable flexibility as to what renders the application. If I where to start something new, I would play around heavily around the concept of API. I would build a JSON API that authenticates...
  15. Znote

    Lua tfs 1.2 and Znote AAC death by summons

    You need to update your playerdeath.lua script to include both the monster and the player as separate rows into the player_deaths SQL table. (see the db.query statement). This logic overrides the monster and retrieves the player (master of summon) instead of the monster: local...
  16. Znote

    problem with import config.lua to znote (linux/tfs1.3)

    Usually websites just presume server to be online, a status checker can be quite the uneccesary overhead. But there is an implementation on Znote AAC, I havent tested it in quite a while though: https://github.com/Znote/ZnoteAAC/blob/671aa9d05729f34141f5f8c5146ceeb935b41f62/config.php#L644-L648...
  17. Znote

    problem with import config.lua to znote (linux/tfs1.3)

    The Lua parser for Znote AAC currently does not support tables such as this: https://github.com/otland/forgottenserver/blob/ace6ff683488d60722904731131ed7cfb20abd82/config.lua.dist#L115-L126 experienceStages = { { minlevel = 1, maxlevel = 8, multiplier = 7 }, { minlevel = 9, maxlevel = 20...
  18. Znote

    which AAC should i deal with?

    Znote AAC works great with: https://github.com/nekiro/TFS-1.4-Downgrades/tree/8.60 :) I am still actively supporting Znote AAC (and will become more active throughout the year), I am also a contributor and user of Nekiro's 8.6 downgrade.
  19. Znote

    Compiling Edit source without recompiling?

    Looks fine, it just hasn't started yet. Add a commit to the repo with source changes (modified cpp, h files), and it should start to run. When it has completed, if no errors, it should appear artifacts here, artifacts are the compiled download packages. If it fails, you should be able to see...
  20. Znote

    Compiling Edit source without recompiling?

    Not sure, I just use the same files as otland/forgottenserver: (the folder with name .github). https://github.com/otland/forgottenserver/tree/master/.github build-vcpkg.yml: https://github.com/otland/forgottenserver/blob/master/.github/workflows/build-vcpkg.yml I think if you make sure your...
Back
Top