• 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

    [Brainstorm] Boss folder organization

    I myself have no horse in this race, because I have no issues writing scripts to warp upstreams divergence into whatever shape I prefer locally. But....this seems like the sort of thing a bash script could fabricate by way of symlinks for anyone who desired to browse it in such a fashion...
  2. Lessaire

    Error In Mysql ANYHELP?

    Wut.
  3. Lessaire

    Error In Mysql ANYHELP?

    How many of these threads did you make?
  4. Lessaire

    Code for guild war/Help

  5. Lessaire

    Code for guild war/Help

    Use the code you already have.
  6. Lessaire

    Compiling Compiling TFS 0.4 rev 3777 on Raspbian

    std::string s = BOOST_DIR_ITER_FILENAME(it); Try this. And then if you get an error about that, add it: otsystem.h #if BOOST_VERSION < 104400 #define BOOST_DIR_ITER_FILENAME(iterator) (iterator)->path().filename() #else #define BOOST_DIR_ITER_FILENAME(iterator)...
  7. Lessaire

    Code for guild war/Help

    I literally run the mission critical databases that.... You know what, never mind. What's a sequel? How did I get here? I better head home before it gets dark.
  8. Lessaire

    Compiling Compiling TFS 0.4 rev 3777 on Raspbian

    Check definitions.h for BOOST_FILESYSTEM_VERSION and see if it says 2. Change it to 3.
  9. Lessaire

    Code for guild war/Help

    If you ran it and it was successful... then your problem should be solved. There is no reason to run it more than once if it worked the first time. Yeah, I'm pretty sure I'm done here.
  10. Lessaire

    Code for guild war/Help

    I gave you instructions. I can't make the table creation query match your database without your schemata. Give me your database schema, with the mysqldump command I give you, and I will adapt the query. That --no-data flag means its just the schema.
  11. Lessaire

    C++ [OTC] RSA Key.

  12. Lessaire

    Compiling Compiling TFS 0.4 rev 3777 on Raspbian

    wut. none of that has anything to do with his problem. his errors are clearly way farther than configure, which is where he would have been stopped if he lacked libs. And why would you ever enable root permission on a service where a Lua exec function is commonly added? There is at least 15...
  13. Lessaire

    Compiling Compiling TFS 0.4 rev 3777 on Raspbian

    Well here's the fix - std::string s = it->leaf(); + std::string s = it->path().filename().string(); But you clearly aren't using the source you said you were.
  14. Lessaire

    Code for guild war/Help

    You are hitting foreign key constraints, probably because I use different sizes... I said you'd have to change that code. mysqldump -u root --no-data your_ot_db > dump-schema.sql The upload this file that contains just your schema somewhere I can see it.
  15. Lessaire

    Compiling Compiling TFS 0.4 rev 3777 on Raspbian

    That's another change false to NULL situation.
  16. Lessaire

    Code for guild war/Help

    wow, yeah, you are missing the begin and payment columns DROP TABLE IF EXISTS `guild_wars`; CREATE TABLE `guild_wars` ( `id` INT UNSIGNED NOT NULL AUTO_INCREMENT, `guild_id` SMALLINT UNSIGNED NOT NULL, `enemy_id` SMALLINT UNSIGNED...
  17. Lessaire

    Code for guild war/Help

    what the problem. if you are root sql user and you deleted the constraints first there should be no problem.
  18. Lessaire

    Code for guild war/Help

    log in to your phpMyAdmin with the root mysql user.
  19. Lessaire

    Code for guild war/Help

    Delete the constraints Delete guild1 and guild2 columns. And new constraint, using guild_id and enemy_id instead. Change any code that uses guild1 to use guild_id Change any code that uses guild2 to use enemy_id Thats it. If you don't know how to do at step, 10 seconds in google will fix you up.
Back
Top