• 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

    Lua TFS 1.3 BUY FOR TIBIA COINS COMMAND

    function getAccountCoins(account_id) local coins = 0 local resultId = db.storeQuery("SELECT `coins` FROM `accounts` WHERE `id`='"..tonumber(account_id).."' LIMIT 1;") if resultId ~= false then coins = result.getDataInt(resultId, "coins") result.free(resultId) end...
  2. Znote

    HELP QUEST TFS 1.4

    Nice website ;) -- Made by GM Klaffen on AcidsOT --[[ itemUid = unique id of quest chest rewardItemId = itemid of reward ]] function rewardChest(player, itemUid, rewardItemId) local itemType = ItemType(rewardItemId) local itemWeight = itemType:getWeight() local playerCap =...
  3. Znote

    Lua TFS 0.4 Task System Problem

    Yeah, I need to see this file: (I think taskConfig.potion is in here somewhere) domodlib('task_config') And I need to know your data/XML/vocations.xml file to accomodate your custom vocations.
  4. Znote

    Lua TFS 0.4 Task System Problem

    This makes me grateful that we stopped doing XML mods and adopted Revscriptsys instead.... In that screenshot, what appears to matter is the first line and last couple lines, first line [Error - Talkaction interface] And last line: attempt to index local 't' As far as I can see, in the...
  5. Znote

    AAC Account Creation Znote AAC problem

    in engine/function/general.php function validate_ip($ip) line 234, change: $ipR = long2ip($ipL); with: $ipR = long2ip((int)$ipL);
  6. Znote

    AAC Account Creation Znote AAC problem

    Hmm try this: 1: in uniserverz, stop apache 2: Turn on PHP development configuration 3: Start apache, do a new register. Do you get any errors popping up?
  7. Znote

    AAC Account Creation Znote AAC problem

    Hmm, looks like it fails to validate your ip, perhaps because it recognizes you locally through the VM network. (Or an issue with IPv6 address space) Set $config['log_ip'] and $config['validate_IP'] to false in config.php and see if that resolves the problem
  8. Znote

    AAC Account Creation Znote AAC problem

    Thats weird. I went through that without any error, on my local installation and through your IP. Perhaps your web browser (Brave) is acting up somehow. Or you have a weird password or something that breaks the account registration. 🤔 Got any error messages in...
  9. Znote

    AAC Account Creation Znote AAC problem

    hmm... Works great? :P
  10. Znote

    AAC Account Creation Znote AAC problem

    I just tested, seems to work fine: Latest uniform server: <The Uniform Server (https://www.uniformserver.com/)> TFS 1.4.1: <Release The Forgotten Server 1.4.1 · otland/forgottenserver (https://github.com/otland/forgottenserver/releases/tag/v1.4.1)> - (Had a weird issue extracting items file...
  11. Znote

    The Forgotten Server 1.4

    Yes, I currently run AcidsOT on the v2 branch. Which is Nekiro's TFS 1.4 downgrade to protocol 8.6. As long as its based on TFS 1.4+ your good. But if its a TFS 1.2 or 1.3 downgrade, you should use Znote AAC 1.6.
  12. Znote

    The Forgotten Server 1.4

    The tagged Znote AAC 1.6 release does not support TFS 1.5+, but otservbr-global when it comes to protocol 12. Support for TFS 1.5+ was comitted 6 days ago, so make sure to apply these changes: https://github.com/Znote/ZnoteAAC/commit/ee351e7adad6fd10cecb18af8acb4aa952140df5 I recommend using...
  13. Znote

    [France] [8.6] AcidsOT

    Updated client to mehah/OTClient 1.3.0 and gave everybody +7 days of premium. This account bonus is still active, instead of just a couple days, will be on permanently until further notice. The server has low activity, so anyone who wants premium, will get additional time for free by just...
  14. Znote

    Raspberry Pi

    If you want to squeeze the best performance out of the Pi, perhaps look into Arch Linux. Arch for Raspberry Pi: https://archlinuxarm.org/ Manjaro (Arch), with desktop environment: https://manjaro.org/download/#raspberry-pi-4-xfce RPI4 Manjaro xfce/kde stress test (and install guide if you...
  15. Znote

    Znote TFS 1.4 premium_ends_at

    premium_ends_at stores the date when premium ends at, in unix_timestamp numeric format. To get the value that represents "right now", you can use any of these functions: In SQL queries, UNIX_TIMESTAMP() SELECT CONCAT('Current unix_timestamp is: ', UNIX_TIMESTAMP()) In Lua, os.time()...
  16. Znote

    TFS 1.X+ Help Creature Event Storage

    Perhaps you can get the other players using target:getDamageMap().
  17. Znote

    TFS 1.X+ [TFS 1.3] How to Change Monster's Spell In-Game?

    Attack names link to spells, etc: https://github.com/otland/forgottenserver/blob/84337dfc9a997126a3505e6782fa8713654cacbb/data/monster/monsters/massive_energy_elemental.xml#L29 massive_energy_elemental.xml <attack name="massive energy elemental electrify" interval="2000" chance="20">...
  18. Znote

    TFS 1.X+ Problem with lagged creatures and summons

    I would try to recompile server with algo nr 3 from Gesior's testing: https://github.com/otland/forgottenserver/issues/1650#issuecomment-924227867 It increases CPU usage compared to default, but might be worth it. It seems to be pretty optimized considering the benefits.
  19. Znote

    TFS 1.X+ TFS 1.3 HOW TO ?

    Perhaps try out mehah's version of OTC, its open source, free and has pretty good performance: https://github.com/mehah/otclient https://otland.net/threads/otclient-1-0-release.276283/
  20. Znote

    TFS 1.X+ Snowball event tfs 1.3 problem

    The table CACHE_GAMEAREAPOSITIONS exist, but it is empty. It was likely created in lib/events/snowball.lua CACHE_GAMEPLAYERS = {} CACHE_GAMEAREAPOSITIONS = {} function carregarEvento() for newX = SNOWBALL.posArena[1].x, SNOWBALL.posArena[2].x do for newY = SNOWBALL.posArena[1].y...
Back
Top