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

    AAC ZnoteACC account manager accounts aren't registered on znote_account

    Looks like you did not copy my code.. show me what you have in that function
  2. R

    AAC ZnoteACC account manager accounts aren't registered on znote_account

    Note: I don't really know much C++, but I believe it'd be something like this uint64_t IOLoginData::createAccount(std::string name, std::string password) { _encrypt(password, false); Database* db = Database::getInstance(); DBQuery query; query << "INSERT INTO `accounts` (`id`...
  3. R

    AAC ZnoteACC account manager accounts aren't registered on znote_account

    Could you show us where you got the sources from? Edit: look for "createAccount" in iologindata.cpp, you'll have to check what gets inserted when you create an account using Znote AAC and do the same queries in the createAccount function
  4. R

    AAC ZnoteACC account manager accounts aren't registered on znote_account

    If you really want to keep the account manager, I believe you'll have to change the sources to insert the data into the znote tables
  5. R

    Chest reward ( random item )

    Oh shit you're right, edited the post @Nuelman recopy the code
  6. R

    Chest reward ( random item )

    This is Xikini's script with the line I told you to change fixed. local rewards = { { item = 9019, count = 1, chance = 50 }, { item = 5809, count = 1, chance = 50 }, { item = 8982, count = 1, chance = 50 } } local YOUR_STORAGE_NUMBER = 5000 local delay_timer = 36000 -- in seconds...
  7. R

    Chest reward ( random item )

    Change "random" to "rand" in line #27
  8. R

    Error 500 Gesior Aac

    Comments, the lines that start with --
  9. R

    TFS 1.X+ Raids! ASK

    Yes you can
  10. R

    TFS 1.X+ Raids! ASK

    Add commas (,) to end of lines #10, #17, #23, #29, #35 and #41
  11. R

    Establishing Database connection....

    You should have a file called schema.sql, you can copy and paste the content or import the file iteslf
  12. R

    TFS 1.X+ Raids! ASK

    Probably best to use something like this Solved - Raids with day and hour. [TFS 1.3] (https://otland.net/threads/raids-with-day-and-hour-tfs-1-3.251912/)
  13. R

    TFS 1.X+ Raids! ASK

    I've never actually played around with raids, so I'm not sure if the xml syntax is right; you can send the message with Lua Add the following on line 6 under "function onRaid()" Game.broadcastMessage("Beware of Tyrn!", MESSAGE_EVENT_ADVANCE)
  14. R

    TFS 1.X+ Raids! ASK

    I guess something like this Use @Itutorial's code below
  15. R

    TFS 1.X+ Raids! ASK

    function onRaid() local monster = Game.createMonster("White Pale", Position(32224, 32761, 10)) monster:setReward(true) local mwallPos = Position(32999, 32301, 7) local mwallId = 1498 local item = Tile(mwallPos):getItemById(mwallId) if item then item:remove()...
  16. R

    TFS 1.X+ Raids! ASK

    You'll have to create the wall again once the monster dies
  17. R

    TFS 1.X+ Raids! ASK

    local mwallPos = Position(32999, 32301, 7) local mwallId = 1498 local item = Tile(mwallPos):getItemById(mwallId) if item then item:remove() end
  18. R

    TFS 1.X+ Raids! ASK

    local item = Tile(position):getItemById(itemid) if item then item:remove() end
  19. R

    C++ Nekiro's 8.6 .exe with faster diagonal steps

    Have you set up MySQL?
Back
Top