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

    Can you eat glue?

  2. Infernum

    C++ Explain Formula level

    Not sure why it works in cpp.sh, probably some weird optimizations, but your formula for some reason doesn't use unsigned long long literals for integer calculation. The max xp you can have is 4,294,967,295 which is why you're only able to get up to 638, if you look at @Alpha's code snippet you...
  3. Infernum

    Can you eat glue?

  4. Infernum

    Lua Requesting idea's of scripts to create

    or use revscripts. https://stigmax.gitbook.io/tfs-guide/interface-monster/monster-revscripts
  5. Infernum

    TFS 1.X+ Skull on Monster does not work

    You do not use TFS 1.3.
  6. Infernum

    why cant i see his thread?

    download more ram
  7. Infernum

    Graphic Designer (free sprite everyday) 5$ sprites, quality guaranteed.

    Give me the best circle you can draw.
  8. Infernum

    crital/ mana/life leech client 10.99

    The RAM in your PC is unable to hold the addresses related to those new attribute keys, you need to upgrade since 10.99+ client version uses a special set of CPU instructions that accesses different types of memory in order to display those values.
  9. Infernum

    Lua transform item and set item:decay()

    The original item pointer still valid after transform() is called. Just use item:transform(item.itemid + 1) then item:decay().
  10. Infernum

    Compiling A good working Otclient compling tutorial please

    You download all the libs from vcpkg, open solution, and compile.
  11. Infernum

    Compiling A good working Otclient compling tutorial please

    This isn't cmd, it's git bash.
  12. Infernum

    Problem in database: account_storage

    Search your files for it. Download a modern text editor such as sublime text, add your folder to project by clicking this: Then ctrl+shift+f to search all files in project and search for: SELECT `value` FROM `account_storage` WHERE `account_id`
  13. Infernum

    Problem in database: account_storage

    Yeah sure, except that does nothing.
  14. Infernum

    Problem in database: account_storage

    You're going to have me keep saying the same thing over and over again until you eventually get it. You change account_id in the query you're running from your code to id.
  15. Infernum

    Problem in database: account_storage

    What?
  16. Infernum

    Problem in database: account_storage

    You have a query running (I don't know where, I'm no mindreader). Find it in your files, it will say the nearly the exact same thing in the code as it does in the error (SELECT value from ......) All you have to do is find that and change where it says account_id and make it id instead.
  17. Infernum

    Problem in database: account_storage

    You need to change the query from account_id to id, nothing needs to be done in your database.
  18. Infernum

    C++ [1.3] critical doesn't update until relog

    You need to do player->sendSkills(); after updating the skills if you want it to show in client as well.
Back
Top