• 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

    Discord will change usernames, beware of scammers!

    I changed my name yesterday, it keeps the track of what our last userid was:
  2. Night Wolf

    Some advice

    as Evil Puncker mentioned, there's no such thing. Even huge servers with ton of investment don't have a 1:1 cip server. The closest thing out there you'll find is Canary, which is a modified engine out of TFS that has kept updating some contents. Now, Canary is a community sustained project, so...
  3. Night Wolf

    Community driven server

    if you want to have a debate create your own thread in Discussions. I'm just pointing this was obviously generated by chatgpt (similar to other responses from him in otland). I don't even need to test it to know because it obviously follows the same text structure from generated text. There are...
  4. Night Wolf

    Community driven server

    Why are you using chatgpt to reply a thread that is asking for COMMUNITY feedback? Isn't it considered off-topic?
  5. Night Wolf

    Status Analytics for all OT Servers

    Awesome! I've been wanting to do something like this for quite some time. Congratulations 🎉
  6. Night Wolf

    Important news

    I'm amazed how a random admin pops up just to make a joke and nudge another fellow members who are trying to pursue the same objective in another direction. Otland honestly should have closed years ago, what your staff does here is a disservice for the community. I'm glad at least chatgpt...
  7. Night Wolf

    Lua Hello folks! How would I go about an alternativ way of adding npc focus?

    On the onAppear callback you can add a condition to check if Npc():getPosition().z == player:getPosition().z
  8. Night Wolf

    Lua Hello folks! How would I go about an alternativ way of adding npc focus?

    local function onAppear(cid) local player = Player(cid) selfSay("Message Upon seeing a player") -- you can also use npcHandler to start a conversation directly in chat. npcHandler:setFocus(cid) npcHandler.topic[cid] = 1 return true end...
  9. Night Wolf

    Lua Hello folks! How would I go about an alternativ way of adding npc focus?

    you have other callbacks beyond 'onSay' for Npcs. One of them is called onCreatureAppear. You can also use onThink to check each 200ms if a player is X sqms near your npc. Both situations are covered inside this list I've made a while ago...
  10. Night Wolf

    AI Sprite generation

    whenever you think of text -> transformers whenever you think of images or generation -> GANs DALL-E is a transformer because it needs to interpret language and translate into something, so the focus is on understanding correctly rather than actually providing good quality results. AFAIK VQGAN...
  11. Night Wolf

    OTClientV8 is from now open-source project

    Regardless of the reasons that made you open it publicly we all have to appreciate that you did it. Thanks for the contribution!
  12. Night Wolf

    Feature [TFS 1.4] OTS statistics (C++/Lua/SQL) by kondra

    See my first comment, I honestly don't think the code being available is something bad, quite the opposite. I'm glad we have now another alternative, I'm just questioning why people don't use existing tools for this and at same time sharing the knowledge and raising awareness that indeed such...
  13. Night Wolf

    Feature [TFS 1.4] OTS statistics (C++/Lua/SQL) by kondra

    I'm not really sure if you're being innocent, sarcastic or you just have want so badly to mislead people intentionally. Every single sentence you said is wrong, except perhaps this one: Let me go one by one: I know many people treat ot community as "business" but this is a school, a safe...
  14. Night Wolf

    Feature [TFS 1.4] OTS statistics (C++/Lua/SQL) by kondra

    You can also do this with a profiler, by the way, if you look up "profilling" in wikipedia it will explain exactly the same thing you just wrote referring to this "other" thing you imagined: The difference is that there several types and techniquees to profile an application, one of them being...
  15. Night Wolf

    Feature [TFS 1.4] OTS statistics (C++/Lua/SQL) by kondra

    I'm trying to understand what you meant in this phrase but I'm not being able to... Do you mind explaining me what's the difference for you between "a profiler" and "statistics realtime of a running application"?
  16. Night Wolf

    Feature [TFS 1.4] OTS statistics (C++/Lua/SQL) by kondra

    It's just overall common sense profile applications while developing them and not in prod situation, there's very few examples I can think of that you would need to have 200 players online and not just 2. Even the examples explained by gesior can be reproducible without a single player online.
  17. Night Wolf

    Feature [TFS 1.4] OTS statistics (C++/Lua/SQL) by kondra

    It's good that now many people that had no clue on how to measure performance of code before can have at least something. Thanks for sharing the code so it can at least serve as an inspiration for more benchmarks in our community. However, it's oddly weird to see programmers not knowing CPP...
  18. Night Wolf

    OTClient 1.0 (Release)

    You can check main differences in the description of the repositories, but in short: 1) Classic otclient (main dev - edubart): original one made by edubart, after many people started using it and improving without contributing he got discouraged to continue working on it. 2) Otland otclient...
  19. Night Wolf

    Found this recently hope you enjoy :) OTCv8 + Sources

    @Shadow_ it would be for the best if you create PRs on top of Mehah version. No point in having another repository Check what this version has that's worth bringing and open PRs. There shouldn't be much either way...
Back
Top