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

    [10.76] Nutopia Original Map (Huge Update 90% Finished)

    where's the decryption key tho?
  2. L

    [7.72] OTHire 0.0.1b - Based in OTServ Trunk (Latest)

    How do you compile this? There's a COMPILING file on the repo with a broken link to otfans
  3. L

    OTB(m)/SPR Documentation

    Are there documents for OTB, OTBM and SPR implementations? What i'd like to know: + Extracting and packing a SPR programatically of course + Internal encoding/decoding of OTBM map files I hope someone can point me in the right direction Thanks in advance
  4. L

    Flying mount system TFS 1.2

    Can you attack/heal and all that in the air?
  5. L

    Feature Unpack items/outfits from any client to PNG with OTClient!

    Is there any way to pack them back? I'm looking for a quick method of creating dat/spr for custom items, unfortunately all tools i've seen are windows only
  6. L

    OpenTibia Tidus Spr Editor v1.5

    Is there any chance to get sources? Linux user here
  7. L

    Cross-compiling latest TFS for Raspberry Pi

    This is in fact a guide for Distributed Cross-Compiling on ARMv6. For the sake of easiness, i will use Arch Linux which greatly simplifies the steps needed. Requirements: RPi Model B+ with Arch Linux Slave(s) PC(s) (another computer with Arch Linux x64) The slave(s) will be the one compiling...
  8. L

    Compiling latest TFS on Arch Linux

    I just added a package to AUR (Arch User Repository) https://aur.archlinux.org/packages/forgottenserver-git/ You can now run yaourt -S forgottenserver-git It will be compiled automagically on /tmp/forgottenserver After that you just have to copy the folder to wherever you want.
  9. L

    [TFS 1.2] Luascript channel

    I'm also using TFS stock 1.2 If you copy-paste the code it should work local env = {print = print, Game = {broadcastMessage = Game.broadcastMessage}} local function run(untrusted_code) local untrusted_function, message = load(untrusted_code, nil, 't', env) if not untrusted_function then...
  10. L

    Factoring code

    To be able to reduce even more: Setting formula local min = (level / 5) + (maglevel * 4.5) + 35 local max = (level / 5) + (maglevel * 7.3) + 55 Analyzing the formula function we can see that there are two operations involved. (+) (*) sum and multiplication (Since division is just the...
  11. L

    Factoring code

    So i'm really lazy and i hate typing over and over the same thing (why wouldnt anyone?). I set myself a goal to try and reduce everything that is not worth more than 5 seconds of your precious time. [Note that this is nowhere to be a complete solution (yet).] When i say table, set, list, array...
  12. L

    [TFS 1.2] Luascript channel

    As in the picture: I tried to use pos:doSendMagicEffect and it fails to do anything because it is out of scope, you define your enviroment (functions) and everything else outside of it will return nil Source: http://lua-users.org/wiki/SandBoxes
  13. L

    [TFS 1.2] Luascript channel

    Why not sandbox it? You can describe which functions you can use. Ex: i set trusted functions to be print and Game.broadcastMessage local env = {print = print, Game = {broadcastMessage = Game.broadcastMessage}} local function run(untrusted_code) local untrusted_function, message =...
  14. L

    [TFS 1.1] Lua map generator (beta)

    Its been a while since your last commit, are you still working on it?
  15. L

    [TFS 1.1] Lua map generator (beta)

    Theres something strange with the folders on @linux ERROR: Failed to load script 'init.lua': LUA ERROR: unable to open file '/data/map_generator/data/map_generator/config.lua': No such file or directory stack traceback: Aparently it's concatenating the folder again, so after changing...
  16. L

    [Gesior Acc] Last joined, Free Houses and other! v2

    no need to edit database to do this $query4 = $SQL->query('SELECT COUNT(*) FROM `accounts` WHERE `id` > 0;')->fetch(); $query5 = $SQL->query('SELECT COUNT(*) FROM `players` WHERE `id` > 0;')->fetch();
  17. L

    Heroes of Newerth (HoN)

    That would make HoN suck, it's a remake of DotA
  18. L

    MOD perfect Svargrond Arena System!

    It doesn't work when i want to enter Second Arena, when i walk into the arena teleport it says i must kill the monster first... And it's the entrance to first arena.
  19. L

    Request Bomberman script please!

    I did said that didn't work, but it is supposed to, i get pos is a nil value, if someone can fix that i can make the barrel removal included there too
  20. L

    Request Bomberman script please!

    So i was trying to do this and failed... big... local function bomb(x, pos) local C = 0 local From = { {x = pos.x + 2, y = pos.y, z = pos.z}, {x = pos.x, y = pos.y - 2, z = pos.z}, {x = pos.x - 2, y = pos.y, z = pos.z}, {x = pos.x, y = pos.y + 2, z =...
Back
Top