• 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

    TFS 0.X Skill stages depending on vocation with Offline Trainer

    Sorry guys, I've been busy working on other stuff. I actually already rewrote the offline trainer script already, I just haven't had time to make the interop
  2. Lessaire

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

    What happens when you do just 1 database engine?
  3. Lessaire

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

    Your script is incomplete. There is no combat object for the skill formula to act upon. Everything else is irrelevant, because this makes it fundamentally broken.
  4. Lessaire

    Linux Compiling TFS 0.4 on Ubuntu 18.04

    1.) Do not just comment it out 2.) The configure.ac has to be autogen'd again if you want your configure script to actually pull in that change 3.) You have a local copy of boost in /usr/local??? Why? If you had any sort of reason for having a local copy of boost, you'd already know how to fix...
  5. Lessaire

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

    Hmm. Doesn't look undefined to me. Are you sure you installed the debhelper and then ran ./autogen.sh ?
  6. Lessaire

    create wait before giving reward

    The function you are after is addEvent. Search your codebase, there is probably already scripts that use it your can use as template. The AddEvent function loses all context. Pass everything you'll need as a parameter. There are no guarantees. Do sanity checks. The first param you'll pass to...
  7. Lessaire

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

    Whats on lines 65 - 73 of your database.cpp?
  8. Lessaire

    OTClient Problems compiling on Ubuntu 20

    I swear upon the Moonman shirt I was wearing when I got a photo with Bonnie Zacherle; I'd sooner introduce you to the volcano than forsake my serenity after what I left behind... bro.
  9. Lessaire

    OTClient Problems compiling on Ubuntu 20

    What you should see is that I typed this entire script in one go, and never tried to actually run it, because I didn't need to. That and I don't typically keep any Ubuntu shards on hand. If there was such minor error, I knew you'd be able to suss it out. I hope you aren't saying that with a...
  10. Lessaire

    AAC Znote Adding Free Premium Days On New Account Creation. (Very Detailed)

    Bro, let me introduce you to the DIFF. Instead of explaining all that, you can present it like this: In ./www/engine/function/users.php under function user_create_account($register_data, $maildata) { unset($register_data['created']); unset($register_data['flag']); if...
  11. Lessaire

    [Weapon] Weapon with healing (healing % of weapon damage)

    Make your own thread? In the correct forum?
  12. Lessaire

    C++ [TFS 1.3] CTRL+ARROW KEY (Make the GODS / GM go through the walls)

    Good to see you alive Colandus. Seen your name a lot as I've refactored my old 0.37 era OT's codebase. 😄
  13. Lessaire

    AAC Znote Adding Free Premium Days On New Account Creation. (Very Detailed)

    Ugh, I feel icky. You made me look at PHP code. Maybe try editing the function that data package in your first code block is being sent to? Here: Znote/ZnoteAAC (https://github.com/Znote/ZnoteAAC/blob/d5749700fc8d88b83a609158ce477676167cbc26/engine/function/users.php#L1241) You can see right...
  14. Lessaire

    OTClient Problems compiling on Ubuntu 20

    Hello. I wasn't gonna respond to this thread. But oh well. Here I am. The problem here is Ubuntu sucks ass. There is even steps in the official build guide which are bandages around the fact that Ubuntu sucks ass. Today I will teach you how to just fucking sidestep Ubuntu's shittiness. First...
  15. Lessaire

    Crisfer ~ Mapping Thread ~

    I have never wanted to make a Western gunslinger OT server until now.
  16. Lessaire

    TFS 1.X+ Skill Loss

    Your skill loss code is probably going to be in player.cpp regardless of what codebase your server is based on Just find it! The best documentation is your code. Just search for "loss"
  17. Lessaire

    RevScripts Exercise Dummy 8.60

    Did you ever test this to see if it fixed your problems?
  18. Lessaire

    TFS 0.X TFS 0.4 ancient version Exori weapon type dmg

    <?xml version="1.0" encoding="UTF-8"?> <mod name="Lessaire's mixtape" version="1.105" author="Xaekai" contact="https://otland.net/members/lessaire.71608/" enabled="yes"> <notes><![CDATA[ Here is your silly little spell. ]]></notes> <instant name="Diamond Fireslash"...
  19. Lessaire

    TFS 1.X+ bless lose c++

    Ok. I believe paying for people's time is allowed here. 🤭 1588346455 This should do Magic level the way you described. diff --git a/src/player.cpp b/src/player.cpp index 280eb111..25b6dc3c 100644 --- a/src/player.cpp +++ b/src/player.cpp @@ -1913,27 +1913,39 @@ void Player::death(Creature*...
  20. Lessaire

    Compiling Error LNK1104

    set VCPKG_DEFAULT_TRIPLET=x64-windows set VCPKG_TARGET_ARCHITECTURE=x64 set VCPKG_LIBRARY_LINKAGE=dynamic set VCPKG_CRT_LINKAGE=static try running these commands the same place you ran vcpkg to install the libraries then do vcpkg upgrade if that doesn't show really strange out put, actually...
Back
Top