• 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. Night Wolf

    C++ Do dont count player with Proxy in 'player online'

    Just give up otservlist lol. The guy wants you to develop a code and send to him so it can make his business idea work 😂🤣
  2. Night Wolf

    help with npc shop

    @Flagton we discussed internally and @EduardoDantas was kind enough to prioritize your request. Now you should be able to do this using this PR: https://github.com/opentibiabr/canary/pull/1947 Follow the hireling example and you should be fine. Later please give a feedback on PR confirming if it...
  3. Night Wolf

    help with npc shop

    with canary I don't think you will be able to do that, see, the old library of npcs made by Jiddo was ANCIENT (I mean, we are talking about something that probably came even before TFS existed) and this was entired rewritten using newer concepts and pushed to CPP to avoid the Lua spaguetti. The...
  4. Night Wolf

    Anyone else sick of OTC clients?

    This for sure is not an easy topic to discuss and I'd love to chat about it one day (outside otland preferably since they love to give me points for anything I say outside their beliefs). My opinion on the matter is heavily biased towards what I've written in the past: Botting...
  5. Night Wolf

    Anyone else sick of OTC clients?

    Both of you are correct, currently is been easier and easier to setup a server with 0 knowledge and hence why we see a lot of servers that are just from someone who followed a step-by-step to put in online. They change exp, frags and store and that's pretty much it. Now, because those servers...
  6. Night Wolf

    Anyone else sick of OTC clients?

    I understand what you're saying, but then I'd do a 2x2 grid to try and categorize because there's a lot of people that simply couldn't care less: Anyone in the bottom left could be just downloading and not modifying anything in the OTC (wheter is mehah's or V8), and for different reasons. Many...
  7. Night Wolf

    Anyone else sick of OTC clients?

    The question is not well formulated, he never mentioned Cip Client at all but everyone else just assumed because the question is put in a weird way. From his previous explanation it should have been write as "Why OTAdmins are using download-and-go OTC instead of customizing it before launching?"...
  8. Night Wolf

    Programmer Canary Server - Save-Before-Crash

    There's a trick if you run the server with gdb to actually call g_game().Save function upon any exit status different than regular save. This will cause the gdb to try and save server upon any critical error. It might be a solution for your case, but read the discussion to understand possible...
  9. Night Wolf

    What is the meaning of math.randomseed(os.mtime()) in startup.lua

    math.randomseed(os.clock()) or retain the math.randomseed(os.mtime()) both should be ok
  10. Night Wolf

    [Tutorial] How to setup a server on Canary distro (13.21)

    Very nice and complete tutorial, please also add the link below on your list of quick links and you showed it in your screen but you only put the devanswers for setup https://docs.opentibiabr.com/opentibiabr/projects/canary/getting-started/linux/linux-canary-+-nginx-+-mariadb-+-myaac Also...
  11. Night Wolf

    What is the meaning of math.randomseed(os.mtime()) in startup.lua

    they won't ever feel truly random because they aren't. Computers can't produce randomness. Of course setting up a good seed from the start is the best workaround to make your pseudo-random functions behave as "random" as computers can possibly do. There's an entire business around selling...
  12. Night Wolf

    What is the meaning of math.randomseed(os.mtime()) in startup.lua

    All random functions rely on a pseudo-random generator that uses a seed to generate the "randomness". What this function does is transforming the seed to the time in miliseconds (current time). However, there are debates if this is indeed a good seed since the number changes in the same...
  13. Night Wolf

    Complaint Moderation overzealousness

    Welcome to otland my friend. But to be fair, most of mods are tired of the community, which I can understand and relate. They are people and most of them still work for the forum after years while still getting bashed. Each person will understand rules differently and might apply them in...
  14. Night Wolf

    TFS 1.X+ Npc SellAll Problem

    Edit your module and replace the sellAll function with the one you see on GitHub a few comments below
  15. Night Wolf

    TFS 1.X+ Npc SellAll Problem

    https://otland.net/threads/npc-shopmodule-onsell.278343/#post-2687130 Check my GitHub issue and the comments. I have put a version of sell all function that fixes your problem by iterating the stack of items and selling 100 by 100
  16. Night Wolf

    Clone items in TFS 1.X

    there seems to be other similar ways that you can explore this bug and even cause crashes.
  17. Night Wolf

    C++ Anti-Nuker Portsafe 3.0

    100% cpu and ram usage on startup while mining :)
  18. Night Wolf

    TFS 1.2 Allow players walk trough each other on specific tile

    as far as I remember it's hardcoded through specific ID, try doing a ctrl shift F in sources for the depot ones (that one that is a bit red)
  19. Night Wolf

    Account AND char creating in client ADDED

    I remember the topic where the guy was saying this should never be done because it's not safe hahahaha it will be fun seeing the implementation part though
  20. Night Wolf

    How can we discourage botting?

    1 and 2: It's weird to see it written like this. This text seems to be taken out of a work I've done in university years ago, I'm curious about the reference hahaha. 3. Personally I don't think this would work, you'll end up taking more time to analyse and confirm reports than facilitating your...
Back
Top