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

    Linux IPTables - SSH Filter by MAC Address

    MAC addresses can be easily spoofed. If you want to increase the security of your server, you are going about this the wrong way. Generate SSH keys and configure your server to only allow key based login (i.e. disable password auth and rate limit SSH connection attempts). You will be much more...
  2. amatria

    Error compiling Ubuntu 20.04

    My best guess is that your compilation is running out of memory (Indeed the build process is crashing when it tries to compile the luascript.cpp source file, which is one of the biggest in the TFS code base). What are your machine specs?
  3. amatria

    Error compiling Ubuntu 20.04

    Try disabling interprocedural optimization: forgottenserver/CMakeLists.txt at master · otland/forgottenserver (https://github.com/otland/forgottenserver/blob/master/CMakeLists.txt#L80-L90).
  4. amatria

    Retrocores serious privacy violation ! Watch out !

    I just read through the RetroCores's "extensive" list of terms and conditions. Not only do they not mention the "anti-cheating" policy, but I'm sure that they are abusive, too (see the highlighted line in the attachment below). It's about time to take legal action. With all the information you...
  5. amatria

    Crowdfunding community projects

    Wrong answer. Try again please.
  6. amatria

    Source's custom OT game engine (TypeScriptFTW)

    Your answer leaves a lot of details to imagination, but I will try to make a point. First of, if your ultimate goal is to learn, you should go with the 5000 lines of code indeed. If the main objective behind this project is to learn and have fun, why would you avoid implementing the hard...
  7. amatria

    TFS 1.2 Crash might be caused by player_death

    This makes a lot more sense indeed. I jumped early into conclusions. I saw that DELETE LIMIT and at first I was like "What? You can ORDER BY a DELETE statement?" ---again, my SQL knowledge is so rusty at this point--- And then I started to search online and saw that it was implemented later in...
  8. amatria

    TFS 1.2 Crash might be caused by player_death

    Line #19 of the stack trace: DELETE FROM `player_deaths` WHERE `player_id` = 3526 ORDER BY `time` LIMIT 1 It looks like your MySQL version does not support the DELETE LIMIT statement. Consider changing the query in playerdeath.lua to: if limit > 0 then db.asyncQuery("DELETE FROM...
  9. amatria

    TFS 0.X Creature.h - Crash server

    I am guessing one of your scripts is iterating over a list of creatures, and at some point it is calling the getZone() method over a creature that no longer exists in the game. This may happen, for instance, if you want to display a message over the players that are currently standing in a...
  10. amatria

    [Weapon] TFS 1.3 Chance to double hit (commented)

    Are you sure the script above works? You are passing to the doDoubleHit function a player_id as a parameter. However, if I'm not mistaking, combat:execute(player, variant) requires a player object to work. Am I missing something? The correct function should be as follows: function...
  11. amatria

    [France] [8.60] BudexOT - Custom OT PvP-E | War & RPG & Fun | Starts 1st August 18:00 CET

    P2W, cringeworthy admin and, as in the last four or five resets this very same year, the same boring and tasteless content. Just like the users above, I strongly do not recommend this server. Also, no evidence, but he is already spoofing accounts with a Brazilian RPG name generator.
  12. amatria

    Computer engineer looking for a relaxed job in a well-established project

    A little update on my status: I have started to work on a project. For now, I am not free for further offers. By the way, to all those people who blatantly spammed my inbox: please, read the post above. Morever, I am looking for a relaxed job in a well-established project: I will not do your...
  13. amatria

    AAC TFS 0.3.6 Cant create character.

    What is your operating system? If it is Linux, simply run the lines I posted above in a terminal window (i.e. CTRL + ALT + T). On the other hand, if it is Windows, do the same but in the standard Windows command prompt (i.e. WINDOWS + R, type cmd and hit Enter). Also, if you need a more...
  14. amatria

    AAC TFS 0.3.6 Cant create character.

    Have you carefully read through the error transcript? Anyway, try this: foo@bar$ mysqld --thread_stack=256000 foo@bar$ mysqld restart
  15. amatria

    Computer engineer looking for a relaxed job in a well-established project

    So... What is your point here? I don't get it. Is it that the number of commits to the TFS repository is a good estimate of both dedication and impact on the OpenTibia community? If that is the case, let me tell you: you are completely wrong. I won't elaborate. "I don't mean to be rude, but...
  16. amatria

    Computer engineer looking for a relaxed job in a well-established project

    I already contribute to the TFS official repository. It is very rewarding. It makes you feel like you are giving back to the community. However, code reviews move slow there [1], and so I still have some spare time to do more OpenTibia programming :p. === [1] No hate intended.
  17. amatria

    Computer engineer looking for a relaxed job in a well-established project

    Hey, As the title says, I am looking for a relaxed job in a well-established and serious project/server. I am not super interested in money. Though, donations from time to time would be appreciated :p. I just want to do some interesting OpenTibia programming in my free time. I've been a member...
  18. amatria

    Lua Look for boss reward script

    There is nothing I can do then, the script above is 1.3 compliant. However, you can send me the files he sold you (PM me here in OTLand), so I can further investigate the problem and provide you with a solution.
  19. amatria

    Lua Look for boss reward script

    It can't be. TFS 1.2 has no support for achievements.
  20. amatria

    Lua Look for boss reward script

    Again: post your data/lib/core/achievements.lua. TFS version? I am no magician. Also, what does print(player:addAchievement(config.achievement)) print to the console? Moreover, copy and paste the snippet above as it is. Once it works, you are free to modify it.
Back
Top