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

    Compiling in Dev-C++

    Sure, if you want I can probably compile your source for you. But I presume you want this compiled to a Windows exe. And that's something I will not do. I'm a firm believer in network service daemons belong on Unix and that means Windows users should run TFS in VirtualBox. If you can...
  2. Lessaire

    TFS 1.X+ Need to put table = nil, for optimize or not?

    Nekiro is mostly correct here. OP, what you are really asking about is called garbage collection, something Lua handles automatically for you. You can read about it here. However there is likely no point in time in which the average OT developer will ever need to modify anything to do with the...
  3. Lessaire

    Compiling in Dev-C++

    I can't really help you with such an ancient GCC. But if you update it to something a lot newer, I do know how to make 0.3.6 era servers compile on modern systems.
  4. Lessaire

    Graphic Designer Spriter for Hire!

    Ahahaha, there's a Supernatural based OT? That's fantastic. Too bad it would take too many sprites to do Firefly... Anyway, your stuff is really good.
  5. Lessaire

    Increase effect limit

    Starting from location 0x10135 in the 8.54 executable binary write the bytes B7 4E 0E 00, then skip a byte, and at location 0x1013A write the byte B7
  6. Lessaire

    Looking for Object Builder that contains ALL THESE FUNCTIONS IN ONE!

    There is only three safe havens for long term software that needs to provide pretty interface: Java, HTML5, and QT. If someone makes a new object builder please please please use HTML5 this time. That way it can be online and also be self-hosted, like Gesior's editor here, or another unrelated...
  7. Lessaire

    [Tutorial] Adding more tiles to game window - Updated 7/6/2018

    This is same thing as what's in the OP, just turned into diffs for my own sanity, in case I need to reference it later. bool ProtocolGame::canSee(int32_t x, int32_t y, int32_t z) const - if ((x >= myPos.getX() - 8 + offsetz) && (x <= myPos.getX() + 9 + offsetz) && - (y >= myPos.getY() -...
  8. Lessaire

    Looking for Object Builder that contains ALL THESE FUNCTIONS IN ONE!

    Making this software on Adobe AIR was a foolish idea in the first place. And that was true from the very day AIR launched. If they wanted to build on some corporate monstrosity, they should have picked Java.
  9. Lessaire

    OpenTibia Sublime Text 3 - Lua TFS Autocomplete

    Because of the existence of ranges, that would actually require parsing the items xml (whose xml? where is this xml? which one?) and caching that data in memory or tmp. A nuisance... but certainly is scope I suppose. I suppose we could make tooling so newer engines could generate a suitable...
  10. Lessaire

    TFS 0.X attempt to concatenate upvalue 'maximum' (a nil value)

    [20:26:10.522] [Error - Weapon Interface] [20:26:10.522] data/weapons/scripts/wands_n_rods/multielements_staff.lua [20:26:10.522] Description: [20:26:10.522] (luaSetCombatArea) Area not found [20:26:10.522] Warning: [CallBack::loadCallBack] Event onGetFormulaValues not found. [20:26:10.522]...
  11. Lessaire

    OpenTibia Sublime Text 3 - Lua TFS Autocomplete

    Ahaha, no. The concept is ok, but the execution dances like a drunk rhino. After recursively debugging issues with their build scripts to determine an ideal way to package an actual build myself (vs using their binaries) and winding up with a 900MB AppImage package (it grabbed the entire...
  12. Lessaire

    Complaint My new release in Tools

    Hanlon's Forum: "Never attribute to moderator malice that which is adequately explained by god damn it Xenforo",
  13. Lessaire

    Custom LIB

    I'm going to guess you probably saw this... it used to be included with the Lua source tarball. -- trace calls -- example: lua -ltrace-calls bisect.lua local level=0 local function hook(event) local t=debug.getinfo(3) io.write(level," >>> ",string.rep(" ",level)) if t~=nil and...
  14. Lessaire

    How much would it cost?

    Well, I'm very wizened in the sphere of 8.54 / 8.60 era servers. I already colocate metal and just dropped serious cash on a new AMD EPYC platform to be my next hypervisor, and should be able to run at least 12 OT servers concurrently before encroaching on the other shards/services that will be...
  15. Lessaire

    OpenTibia Sublime Text 3 - Lua TFS Autocomplete

    I think the Theia foundation is ideal since it's basically the Eclipse people took vscode and rebuilt it from the ground up, slapped a truly free license on it, and made it able to consume native VSCode extensions. So it's free to rebrand and customize, but users that can't live without "x"...
  16. Lessaire

    OpenTibia Sublime Text 3 - Lua TFS Autocomplete

    If you'd like to collaborate on that, I think it would be nice to make a nice OpenTibia-specific build of Theia. Ideally there would be custom syntax coloring based on Server Distro/Version, with separate colors for Lua Built-ins, C-bound OT functions, the Revscript Classes like Creature Player...
  17. Lessaire

    TFS 0.X attempt to concatenate upvalue 'maximum' (a nil value)

    If these are globals you made, you should follow convention and make them ALLCAPSMEANSGLOBALSINGLE = true 1589048772 Based on what it seems like you trying to do... this is roughly how I'd do the same thing. local lookup = { [COMBAT_FIREDAMAGE] = { condition = CONDITION_FIRE, effect...
  18. Lessaire

    TFS 0.X attempt to concatenate upvalue 'maximum' (a nil value)

    There is many missing vars here. Where are spellcfg_wandnrods_min, spellcfg_wandnrods_max, and spellcfg_wand_atkMultipler coming from? Where did you get this script?
  19. Lessaire

    TFS 0.X Tfs 0.3.6 Physical bonus for addonss

    Your answer lies here. If it's not in that list already, it requires source edits.
  20. Lessaire

    Compiling tfs 0.4 r3884 debian compiling with sqlite error databasesqlite.cpp

    Maybe the dependency tracking has issues. Are you running a really old version of Debian? 3884 won't compile as-in on modern systems. Make sure you are running make clean between any reconfigure and before any autogen, in case you have ccache installed and it's not picking up any header...
Back
Top