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

    OTClient Graphics Discussion (Anyone out there more knowledgeable than me?)

    Hello there, I read your comments and I would like to join the brain storm, although I have not evry much experience using openGL. Someone mentioned the Texture arrays which is probably nice thing to look into, although I was wondering to make a proof of concept using texture atlases. I believe...
  2. tarjei

    Promise concept inspired by Q library

    Hello! I was recently inspired by promise concept, and I decided to tackle the implemetation of it in lua. The idea behind it is quite simple. When you perform many callbacks asynchronously , and you have issues in making them execute in particular order, this might be useful to you :) I used a...
  3. tarjei

    Scripter Lua Scripter for hire

    Save the money, Send me two joints, I will make it for you honey, If that is your point
  4. tarjei

    Error Compiling in Ubuntu 15.04

    In case someone entered here: I grabbed the library from here : https://github.com/samueldr/physfs used CMAke (you might need to remove -Werror flag from CMakefile inside the lib) builded it and used the .a file from there ;)
  5. tarjei

    Collision System

    Sounds cool :D I will pay some attention to Astar only, I was once eager to solve this case, happy you owned it ;)
  6. tarjei

    Collision System

    Have you extended AStar algorithm to make monster follow players multifloor ? :D
  7. tarjei

    Feature RTree structure, can be used to search for MILLIONS of sound zones.

    Hi, I would like to share a wrapper for RTree. It is a great structure, if you need to keep track of a lot of geometric structures, such as rectangles, polygons etc. I used it to enhance a sound system. I dont have much time to guide you through entire solution, but I believe that if you are...
  8. tarjei

    Enhanced sound module

    Hello! This weekend I was trying to enhance the sound module originaly posted by Shawak (origina post here: [Mod] Sound System . As I mentioned in there, it had one significat flaw I didn't like -> it was iterating table of sound zones, which were rectangles. That's cool if you don't want to...
  9. tarjei

    [Mod] Sound System

    Hey I love it ! :D However covering are with position is pin in the ass, along with looking for those areas, if you intend to cover some large areas :) If you don't mind I will submit a little bit tweaked version :D
  10. tarjei

    Error Compiling in Ubuntu 15.04

    Try this one , it wont use static libraries on linux then ;) I had similar issue, god knows why that happened, it works before, well this solved this problem for me. In CMakeLists.txt find something like this, and make sure the option is OFF like below : option(USE_STATIC_LIBS "Don't use...
  11. tarjei

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

    Dont worry I am still there, just a little bit behind the scene, fighting for a quality to emerge from a void XD
  12. tarjei

    Necronia - Discussion

    Indeed, but banana actualy made me laugh, simply beacosue of this story: at my workplace, there is a weekly delivery of fruits, and one of our programmers said something like, ok lets go grab a banana. He stood up and after 10 seconds 2 other programmers followed him. My first thought was : hey...
  13. tarjei

    Necronia - Discussion

    Unfortunately none of beta testers sent me burn :(. Yellowhat you made that I come with this idea: we should open second donation page-"Send Tarjei a bottle of burn to keep his work efficient *click*" xD By the way, I bet you wanted me to give you a share ?:rolleyes:
  14. tarjei

    Rikci's Thread

    Wow, you made really great progress since first post of your thread. I love many of your sprites. Few of them were funny and made me smiling and some of them were really decent. Keep it up bro, I am really delighted with your work in this thread :D
  15. tarjei

    new equipment slot, possible?

    You have to handle both client and server side stuff. For server side, you will need to edit player.cpp that handles inventory. . Client side : game_inventory I belive.
  16. tarjei

    Graphics - Question about framebuffers.

    Hello, I started experimenting with shaders. I want to apply a single shader only on a creature. I figured I can use a framebuffer to render outfits into a single texture and later on apply a shader onto this texture. Problem is, that in presence of many creatures FPS drops more than I have...
  17. tarjei

    [DLL] Messing with client gui (Cipsoft one) - no injector.

    You shall not cheat or necronia stuff will ban you xDD Now seriously: I will check this out when Im home. I suggest you to lookup this message and change some stuff there.
  18. tarjei

    Windows Removing "set ambient light" slider from advanced graphics menu.

    10.1 LIGHT_NOP=&H517ED9 LIGHT_AMOUNT=&H517EDE You can keep trying yourself, I will take a look on this later though. But if you wish to get more appropriete response I suggest to go at tpforums.org in the future :P
  19. tarjei

    Windows Removing "set ambient light" slider from advanced graphics menu.

    Its not the address you are looking for in client. You have to find analogue of this 4E6119 in 10.31 client. Check tibia api site, there might be this address .
  20. tarjei

    Windows Removing "set ambient light" slider from advanced graphics menu.

    I dont know if its same as it was back in 8.54, but try this. I belive tibia api addresses are beeing updated, if no you are screwed XD find this address for 10.31 -- >FullLightNop = 0x4E6119 <-- its for 8.54 You have to NOP 2 bytes here -> make it 0x90 both next 2 bytes is a value of ambient...
Back
Top