• 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

    Sharing knowledge on Lua possibilities

    you can actually call a spell under any callback, it's awesome! Sometimes I like to crosscheck situations where I could "port" a callback to another just to exercise creativity
  2. Night Wolf

    Sharing knowledge on Lua possibilities

    35. Dash Description: It's a remake of AvaOT/Korelin spell. It forces you to run forward and can be controled by ctrl + arrow. 36. Invisibility. Description: A spell that makes you invisible to other players (not to monsters) and act like Warlock invisible spell 1626482831 After a whole day...
  3. Night Wolf

    CODING Quick Questions. wondering need some motivation lol

    start with interviewbit, it's the best website for its purpose (learn and train how to code). then do URI/hackerrank and when you feel really prepared start participating on contents on code forces. In parallel you will also want to study C++ and read the book I've said, it's the best...
  4. Night Wolf

    Sharing knowledge on Lua possibilities

    29. Frozen Orb. Description: A spell that creates a orb which deals ice damage and slows who is hit. This script is a 1.x adaptation of my 0.x version of the same spell. 30. Multiple Attack Description: Multiple basic attacks that adapt to the kinda of arrow you are using. 31. Rapid Fire...
  5. Night Wolf

    Sharing knowledge on Lua possibilities

    22. Item that allow summoning monsters that aren't summonable. Description: If you have the utevo res version in Lua, with this script you can create a wand that can allow you to summon non-summonable monsters. 23. NPC Callbacks. Description: Possibly the most under-explored/under-used in...
  6. Night Wolf

    Sharing knowledge on Lua possibilities

    18. Some useful functions for your lib! 19. Counting kills of tasks in questlog. Description: If you have the Lua questlog version, it's possible to create an interval to count monsters and creatures valid for that quest. 20. Autofill of random containers. Description: It's very common for...
  7. Night Wolf

    TFS 1.X+ Otclientv8 issues, kicking players

    I was gonna say you understimate the intelligence of the OP by assuming he wouldn't understand the reason for such limit, but after his reply saying it was already 6k I agree with you.
  8. Night Wolf

    Sharing knowledge on Lua possibilities

    10. Vouchers of extra XP and Drop. Description: This isn't the complete system, but it gives you an idea on how to create a check loop to start/end the counting by using onThink of creaturescripts. 11. Spells onDeath. Description: It's not very common to see spells being called outside...
  9. Night Wolf

    User you miss from Otland

    from the set of users that I miss and are in otland, they all apply xD besides Yazzo (possibly he has a diff user that I doesn't know)
  10. Night Wolf

    User you miss from Otland

    I miss all the Black Onyx team: @Capaverde, @Yazzo, @Jovial, @Colex, @Nostradamus If I'd have to name one it would be Jovial, the guy was extremely talented despite not being from computer science and he was a great teacher too!
  11. Night Wolf

    Complaint Bad limit of text

    I'm trying to write a tutorial for over 3 hours just because it constantly says I'm reaching 25k Limit. Even trying to separate it on posts the automerge triggers the limit and doesn't allow. Also, can we please include a counter of characters? It can also change to red once the limit is reached.
  12. Night Wolf

    Sharing knowledge on Lua possibilities

    Dear all, I'm going to post a few systems/changes that I've done for my former project, Empire Server, that we didn't utilized or are improved versions of past systems I have done. I'm not going to go too much in detail as the goal is to serve as study material, especially considering some of...
  13. Night Wolf

    TFS 1.X+ Otclientv8 issues, kicking players

    otclient allow a lot of actions to be done and sent to server side without any kinda of limitation (like cip client does, limiting actions to 1s in some occasions). this sends thousands of packets per second to the server, and your config.lua is set to accept possibly only 40 packets per...
  14. Night Wolf

    What did people do with their old, great servers?

    Each person has their own reason. We also never instaured the culture of "paying back to community once we stop using". People just sell/hand off to someone close. I also believe this has bad potential of dividing more the community. More bases means someone would have too git compare the whole...
  15. Night Wolf

    CODING Quick Questions. wondering need some motivation lol

    Don't think about languages as an end objetive. They are tools to solve issues. Hours programming doesn't mean a thing honestly, solving complex problems and problems of different areas give you much more experience. Ideally you would be studying the problem 80% of the time and coding 20%. A...
  16. Night Wolf

    OTClient 1.0 (Release)

    @Mehah Astonishing results!! performance-wise it seems pretty comparable to Saiyans optimized cpp client. Very good improvements, I knew it was a matter of time until your version outperform V8. GJ!
  17. Night Wolf

    Lua Summon bomb TFS 1.3 explodes when it dies

    Have you seen this topic already? https://otland.net/threads/volatile-spiderling.206232/#post-1979807
  18. Night Wolf

    Programmer OtservBR crashes

    Well, it's not faster because you actually need to write a mural (like you did), you need to wait people contact you, you'll ask for their credentials and past works. They will investigate logs, study the project and most likely they will ask for our support (yes, me and skulls who you just...
  19. Night Wolf

    Programmer OtservBR crashes

    Why not report an issue in their github repo/discord? It would be easier and cheaper
  20. Night Wolf

    NPC [TFS1.2] A monk who will mark your map and set your home town.

    Check this example I had created for my server local keywordHandler = KeywordHandler:new() local npcHandler = NpcHandler:new(keywordHandler) NpcSystem.parseParameters(npcHandler) local Topic = {} local mapMarks = { [{x = 2022, y = 2706, z = 7}] = {MAPMARK_LOCK, 'Depot'}, [{x = 1992, y =...
Back
Top