• 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!

Recent content by Fir3element

  1. Fir3element

    Action - LEVER DONAE SHOP with znote_accounts

    try: local t = { [1938] = {1,"crystal arrow",2352}, [1939] = {5,"Trufle manarune",2307}, [1940] = {5,"elethriels elemental bow",8858}, [1941] = {5,"bubu wand",7958}, [1942] = {5,"upgraded norse shield",8908}, [1943] = {5,"ranger legs",8923}, [1944] = {5,"bunny...
  2. Fir3element

    reset task system --after relogin or after dead.

    The script looks correct - if there was a storage problem, it wouldn't even count the progress. Take a look at the creaturescripts to see if there's anything resetting these storages on login/death: search for doCreatureSetStorage or setPlayerStorageValue
  3. Fir3element

    [TFS 1.4.2] Full Account Manager

    Thanks :) I'll take a look at the repositories. Since there are many forks of TFS 1.X, I decided to develop the feature based on the official release. This makes it easier to see the code changes and implement them on any other server.
  4. Fir3element

    RevScripts BLOCK MC PVP

    try this code: local ec = EventCallback -- Verifica se já existe algum jogador do mesmo IP em combate PVP local function hasIpInPvp(ip, excludePlayer) for _, player in ipairs(Game.getPlayers()) do if player:getIp() == ip and player:getId() ~= excludePlayer:getId() then...
  5. Fir3element

    [TFS 1.4.2] Full Account Manager

    Fir3element submitted a new resource: [TFS 1.4.2] Full Account Manager - Fully featured Account Manager ported from TFS 0.3/0.4 to TFS 1.4.2 Read more about this resource...
  6. Fir3element

    OTClient OTClientv8 Compile - 2025

    I updated the code to work with Visual Studio 2022 and the latest libraries. You can check out the commit here: chore: update to Boost 1.88+ compatibility and add vcpkg manifest · glinharesb/otcv8-dev@52570b8 (https://github.com/glinharesb/otcv8-dev/commit/52570b84969bda88a38ce0a19c5b2c8ef62cf13a)
  7. Fir3element

    [8.60] The Forgotten Server 0.4

    I generated a report highlighting the differences between the original source and the modified version. It’s not perfect, but the changes are clearly visible. Open it in your browser by removing the .txt extension.
  8. Fir3element

    [8.60] The Forgotten Server 0.4

    I suggest testing with Ubuntu 16.x or using Docker with an older Linux version. I haven't been using this distro in production since 2016 :/ I was also informed about another bug involving rings and a random crash after a few days online (even without any players). Unfortunately, my expertise...
  9. Fir3element

    [8.60] The Forgotten Server 0.4

    EXCEPTION_TRACER was crashing the server and I haven't had time to fix 🥲
  10. Fir3element

    [8.60] The Forgotten Server 0.4

    https://github.com/Fir3element/3777-bkp/
  11. Fir3element

    [8.60] The Forgotten Server 0.4

    UPDATES For people still using this server, I did some updates: Added Dockerfile and docker-compose.yml (use "bindOnlyGlobalAddress = true" in config.lua) Added CMakeLists.txt Added LuaJIT (doesn't work on arm64) Fixes to compile on Ubuntu 22.04; macOS Monterey; Visual Studio 2022 Fix NPC...
  12. Fir3element

    TalkAction war system

    probably need this code: TalkAction - war system (https://otland.net/threads/war-system.270955/#post-2610581)
  13. Fir3element

    [TFS 1.3] [8.6] Server Freeze/Lag when player die

    lib version maybe (debian 8 have old libs)
  14. Fir3element

    [8.60] The Forgotten Server 0.4

    I edited so many files to compile in visual studio 2010, I think this support became as default in 9.x+ Try to compare the functions... and I used OpenSSL instead CryptoPP.
  15. Fir3element

    [TFS 1.3] [8.6] Server Freeze/Lag when player die

    check death function on src code
Back
Top