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

    XML Monster Files Encoding Discussion

    what is the point of this thread if blarghargharghrrgrhrghr
  2. EvulMastah

    Best/Solid sources in your opinion.

    yes and mine
  3. EvulMastah

    Dark Blue theme gone

    i have sad
  4. EvulMastah

    Chojrak

    kokol is dead
  5. EvulMastah

    When will TFS 1.4 be released?

    https://semver.org/ here
  6. EvulMastah

    [data conversion/capture] Monster file conversion to JSON.

    I wrote a very basic converter decades ago, it writes to XML, but changing it to JSON is pretty straightforward. I've also got a converter from XML to custom JSON schema created for a custom engine, which I can also upload if you want. I'm attaching the tibiastuff.php which is needed for the...
  7. EvulMastah

    Specjalista od silników 7.6 xml

    Wszyscy wyginęli
  8. EvulMastah

    CoronaVirus- What's your status?

    i died
  9. EvulMastah

    Otclient strange bug

    You might want to reduce the max complexity (50000) of path finding at lines: otclient/localplayer.cpp at 13789c56128a694b3236717359cfb2cc04f627e0 · edubart/otclient · GitHub otclient/localplayer.cpp at 13789c56128a694b3236717359cfb2cc04f627e0 · edubart/otclient · GitHub
  10. EvulMastah

    Prevent placing item in arrow slot (movements)

    I doubt there were movements in SVN 0.6.0.
  11. EvulMastah

    Feature Embedded proxy in your server.

    Sorry, I'm not using nginx proxy. Anyway, my server is also Debian and it's pretty old, thus nginx version available on it is 1.12.2. I have following /etc/apt/sources.list: # jessie-updates, previously known as 'volatile' deb http://debian.mirrors.ovh.net/debian/ jessie-updates main deb-src...
  12. EvulMastah

    Feature Embedded proxy in your server.

    Have your tried with: proxy_bind $remote_addr transparent; ?
  13. EvulMastah

    Strona z kamerami

    Watch live surveillance online IP cameras in by rating
  14. EvulMastah

    Linux Permission Denied while ./tfs

    777 is insecure. You probably just needed chmod +x tfs for the binary. Also, you do not need to use sudo. You are already root. For the website, do not chmod the whole dir, just the needed ones.
  15. EvulMastah

    Help OTClient Compile

    You must add boost-filesystem to linker.
  16. EvulMastah

    Solved What is wrong with this code?

    addEvent(repeatF, 500) You need to pass the arguments: addEvent(repeatF, 500, cid, target, var) It might not work as intended or not work at all when passing userdata.
  17. EvulMastah

    Little C++ homework

    Sorry for the quality: 1: #include <iostream> #include <vector> int main() { std::vector<long long> integers; integers.reserve(5); std::string input; while (integers.size() < 5) { std::cout << std::endl << "Please type a number: "; std::cin >> input...
  18. EvulMastah

    OpenTibia OTClient that unpack map.otbm to .png files

    Please stop trolling. Are you really working as a programmer? It kinda makes me feel sorry for your employer.
  19. EvulMastah

    Add Player 3% Mana per sec needed

    Players are declared as unordered_map, so the complexity is O(1) in the best case and O(N) in the worst.
Back
Top