• 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!

Search results

  1. kor

    Lua items block

    Can't you check what changed in git history?
  2. kor

    OpenTibia [various] Tibia Extended Client Library

    That's bad.
  3. kor

    OpenTibia [various] Tibia Extended Client Library

    You can look for this on my github.
  4. kor

    OpenTibia [various] Tibia Extended Client Library

    You need to provide call to original method DirectDrawCreate from system ddraw.dll. DLL size can differ because of many reasons, i.e. different compiler used or amount of linked libraries.
  5. kor

    OpenTibia [various] Tibia Extended Client Library

    Visual Studio 2019
  6. kor

    OpenTibia [various] Tibia Extended Client Library

    You just linked it there - tibiaapi/Version870.cs at master · ianobermiller/tibiaapi (https://github.com/ianobermiller/tibiaapi/blob/master/tibiaapi/Addresses/Versions/Version870.cs)
  7. kor

    OpenTibia [various] Tibia Extended Client Library

    Copy .filters and .vcxproj files from other project, replace with files from original repository, fix some compiler bugs and you're done. Sure, I'm using CheatEngine to listen changes in memory (like 0x79C314 is taken from pressing CTRL+N and comparing what values was changed between 0, 1 and...
  8. kor

    OpenTibia [various] Tibia Extended Client Library

    Below Tibia-Extended-Client-Library/dllmain.cpp at master · SaiyansKing/Tibia-Extended-Client-Library (https://github.com/SaiyansKing/Tibia-Extended-Client-Library/blob/master/src/dllmain.cpp#L361) (on 8.60 version) add if (*(uint8_t*)0x79C314 < 2) { return; } So manabar will be drawn...
  9. kor

    How to get FREE VPS from Oracle Cloud

    ubuntu@instance-18:~$ uptime 19:00:05 up 106 days, 18:52, 1 user, load average: 0.07, 0.08, 0.04
  10. kor

    Zasięgi OTServlist.org - jakich korzyści po reklamie oczekiwać?

    żadnych nie ma Pozdrawiam :)
  11. kor

    Feature [DLL] Simple WSAD in C++

    You have to capture packet data to file (record it on engine or capture from client) and compare with what server should send and client will expect. NPC and monster can also have skulls.
  12. kor

    Feature [DLL] Simple WSAD in C++

    Probably server is sending (or missing) additional byte for addon for every outfit (NPC and few monsters can also have addons if they're using outfit looktypes), so data received is different from what client expects. Also, you didn't even specify where it's "giving you bugs" - server-side...
  13. kor

    Tibia Server 6.4

    Sure, once per 20 years
  14. kor

    Spell Drill arrow

    So don't use it.
  15. kor

    Feature [DLL] Simple WSAD in C++

    Nope, but I can add a shortcut to toggle mode.
  16. kor

    Fossil | 4.0 | Development Thread

    What I want to see there? Definitely not an OTClient with mixed sprites. It's just another "oldschool" 7.7 server with smaller map and few graphics imported.
  17. kor

    top fraggers problem

    Don't put it in every file, instead place that include somewhere in AAC engine, for example in engine/init.php. Anyway, you should update your AAC, because in current Znote version it's proper usage of mysql methods - ZnoteAAC/connect.php at master · Znote/ZnoteAAC...
  18. kor

    top fraggers problem

    This extension was deprecated in PHP 5.5.0, and it was removed in PHP 7.0.0. via https://www.php.net/manual/en/function.mysql-query.php You should use newer extension (MySQLi) or include some function replacement like this php-mysql-fix/fix_mysql.inc.php at master · rubo77/php-mysql-fix...
  19. kor

    How and what I need for modify the Cipsoft files code? (RealOTS)?

    In that case you should drop your project before you would sacrifice waste too much time for it.
  20. kor

    How to remove worms for fishing rod usage in Cip files?

    Open dat/moveuse.dat and find line BEGIN "Fishing". Here you will find IsType (Obj1,3483) where 3483 is ID of fishing rod. There you have IsObjectInInventory (User,3492,0) and DeleteInInventory(User,3492,0) which is responsible to check for worms (ID 3492) and delete after use. So my guess is to...
Back
Top