Jump to content

ds_aim

Banned
  • Posts

    442
  • Joined

  • Last visited

  • Days Won

    9
  • Feedback

    0%

Everything posted by ds_aim

  1. yes dude yes. All metin2 p-server can hybrid crypt files. If just gr2 are corupted then they want to protect models. What you don't understand ? HYBRID CRYPT.
  2. The fuck . Dude official client is hybrid crypted. Hybrid crypted packs can't be extracted with eternexus. Is nothing corupt .
  3. Here it's #include directive [Hidden Content] #include "DBManager.h" You have over 1000 examples in files about how to include, just use brain.
  4. You can use EterManager . EterManager can handle that strings. [Hidden Content]
  5. Dude, you are idiot? Is to hard to search ? Solution is posted here by rideas even if i don't like it. search
  6. Is this even a question ? Always major versions is the best. Soo actual 10.3
  7. Dude don't exist another fix. This is a mysql option. If you want a permanent fix send ticket to mysql developers and say them to add default this sql_mode
  8. Never do this , i tested this long long time ago since 2014. -You will have unknow packet header errors. (Ingame kicks) -You will get sequence erros( Ingame kicks ) -You will get buffer overflow problems. (ingame kicks ) This tutorial is really shit and also useless. If you want to keep improved disable you need to rewrite sequence table and made automati buffer adjust functions (Like me ) With this disabled this codes will be valid codes : if (buffer_has_space (m_lpOutputBuffer) < iSize + 8) { sys_err ("desc buffer mem_size overflow. memsize(%u) write_pos(%u) iSize(%d)", m_lpOutputBuffer->mem_size, m_lpOutputBuffer->write_point_pos, iSize); m_iPhase = PHASE_CLOSE; } Just disable improved_packet_encryption and install offline shop. You will get buffer overflow prolems. Never do this.
  9. And make him recognize these signs. [Hidden Content]
  10. How metin2 network works? Store data in RAM through the buffer. What is a buffer? A buffer is a block of RAM that is used to hold input or output temporarily. This can speed up I/O considerably because of the various overheads incurred when transferring data. This means you don't have enought buffer size or network I/O operation it's too slow to process packets. To avoid such problems, you need to decrease the size of the buffer, depending how much RAM memory you want to use you need to increase buffer size or decrease it. In my source this is already done, and i never had such problems (Unknow packet header, seqeunce , buffer_overflow, not enought buffer size )all those it's tottaly solved. The following figure illustrates the process of a network I/O operation under Windows, but maybe for you it's to late to understand this. Regards ds_aim.
  11. pkg install misc/compat7x It's so hard to read documentation ? [Hidden Content]
  12. Check if the ip of the killer and killed person matches? I can do this.
  13. Sequence it's send from client intro game. Header 10 it's ENTERGAME Soo make the entergame packet to send sequence packet. bool CPythonNetworkStream::SendEnterGame() { TPacketCGEnterFrontGame EnterFrontGamePacket; EnterFrontGamePacket.header = HEADER_CG_ENTERGAME; if (!Send (sizeof (EnterFrontGamePacket), &EnterFrontGamePacket)) { Tracen ("Send EnterFrontGamePacket"); return false; } SendInternalBuffer(); return SendSequence(); } I'm waiting for you reply. All CLIENT->GAME packet's should send sequence. I think sequence systems was unfinised when source was leaked and published. I looked intro codes and always all Client->Game packet's should return seqeunce.
  14. For 100% mariaDB performance it's necessary, unless you will get just 60% performance. I tested both ways.
  15. Don't forget the tutorial for MariaDB librar intro metin sources. And mariadb101 it's just client. databases/mariadb100 it's the corect path.
  16. One thing is certain. We all gonna steal these updates.
  17. Just use fucking LLDB is better than gdb. How to analyze core dump ? lldb path-to-executable -c name.core [Hidden Content] Anoather it's Visual GDB debugger [Hidden Content] I use both and work like a charm, lldb give me 60% more infromation than gdb. Regards
  18. Metin2 = World of warcraft : when? 1 year maximum. ahahahah
  19. CC = clang++38 CFLAGS = -Wall -ggdb3 -g3 -pipe -std=c++14 -mtune=native -O3 -fstack-protector -static -fpedantic TARGET =../../qc Us this in you makefile. If you can't make it work reply and i upload for you one static.
  20. You need to change HEADER_CG_ITEM_DROP packet structure and add count also HEADER_CG_ITEM_PICKUP and add count.. I think..
×
×
  • Create New...

Important Information

Terms of Use / Privacy Policy / Guidelines / We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.