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

    Moving towards OTC

    Should it be creating multiple textures for each creature, instead of one huge texture? EXACTLY It has to load HUGE textures every draw, so if you split the textures as Baxnie explained, you then just need to select which texture you are going to use. You're still going to cache them but they...
  2. conde2

    Moving towards OTC

    Flatlander I think you misunderstand Baxnie, he is saying that the textures is to big and because of that it uses to much memory and also loose FPS. If you create textures that fits better for each type of thing, it would be better because you are going to draw LESS pixels, saving memory and...
  3. conde2

    [Germany] [Custom] Necronia ❂ Open-Beta Now

    I simply can't login, server offline?
  4. conde2

    Printer Back?

    I'm looking someone experienced enough to work with me in a Monster AI system, that's will be huge, if you are interested tell me.
  5. conde2

    Solved [TFS 1.0] Unsafe script

    You shouldn't pass metatable in addEvent, because the thing (player / creature / item) could not exist when the event is called, so you need to verify this before doing any action.
  6. conde2

    Solved [TFS 1.0] Unsafe script

    You need to pass the targetId not the target metatable !!! So what you need to do is basicaly this: addEvent(revertOutfit, split[3]*1000, target:getId(), oldOutfit) function revertOutfit(targetId, oldOutfit) local target = Creature(targetId) if target then target:setOutfit(oldOutfit) end end
  7. conde2

    Recive Opcode in Client

    ExtendedOpcode is different from Opcode use: ProtocolGame.registerExtendedOpcode
  8. conde2

    OTClient Module Tutorial

    I make this as my words, I will start making modules for my project in the vacations, so I will be in touch with this and I will be able to help if there is any doubt. The reason that i don't do tutorials, is because it's difficult to me and take a lot of time, instead I prefer help on doubts...
  9. conde2

    Asking for Credit

    Its not so difficult to put on the topic: "Credits to XXXXX" or "Idea from XXXX" It don't hurts and at least show that you are not trying to promote yourself from somebody else works. I think if people put the right credits more people would try to help instead, because you will see that...
  10. conde2

    So I'm in the process of designer an RPG server

    Sorry reading all your posts it seems that you're a limited scripter or programmer. If you at least followed TFS 1.x development you will see that 99% of things possible to do in 0.4 is possible to do in 1.x IF you are a experienced scripter and have creativity ItemAttributes can be done by...
  11. conde2

    Navanna - [By Neon]

    Amazing just amazing =)
  12. conde2

    Why open source modules are a bad idea.

    I'm not reading this !!!!!!! There is something called client and something called server; Let's explain somethings, the server CHECKS every things sent by the CLIENT if you say you have 100 gps then the server checks if you really have 100gps doesnt matter if in the CLIENT you are editing...
  13. conde2

    [DevAAC] New AAC and best website for TFS 1.X

    War page, houses, deaths, news system, forum That's some ideas what can be done, do make this greater than ever!
  14. conde2

    Necronia - Discussion

    Can't download the client, is the client supposed to be downloaded only by beta testers? The downloaded file "necroniaclient.invalid.to.1.0.0.wyu" failed the Adler32 validation.
  15. conde2

    [SOLVED]Terrible graphical bugs

    0xc0000007b error is because you are using the wrong dlls in this case you should use 64x dlls not 32x
  16. conde2

    Function failed in OTCLIENT

    First, tell the version of OTClient you are using, second the version of TFS and version of Tibia Client Now go to OTC and try to reproduce the erro, then click CTRL + T and see if any errors is appering on the terminal, this way we can help you in a more efficient way.
  17. conde2

    Otfans is back?

    Great and the forum changed, looks good.
  18. conde2

    Problem with generate in Cmake

    Try this: http://otland.net/threads/compiling-otclients-latest-source-with-microsoft-visual-studio-2013.204849/
  19. conde2

    Compiling OTClient's latest source with Microsoft Visual Studio 2013.

    I have changed it because not everyone have a D:/ directory but I believe 99% windows users have a C:/ directory
  20. conde2

    Should small client updates be disregarded by the OT community?

    Latest RME work on 10.36 since there is no change in Dat and Spr same for OTB editor and DAT editor, OTCLIENT and TFS walk togheter so it's only necessary update them when TFS is updated, the only problem I see is that they could be more dynamic / configurable with the protocol and reading Dat...
Back
Top