Jump to content

[M2Dev] Advanced Files To Build Your Server: Src & Server Files & Client [x64 / DX9Ex / CMake / Python3.14 / FreeType / XChaCha20-Poly1305]


Recommended Posts

This automatic MSAA detection feature shouldn't be applied to the entire device; it messes up the .sub files.

  • Honorable Member
17 minutes ago, cris690 said:

This automatic MSAA detection feature shouldn't be applied to the entire device; it messes up the .sub files.

How exactly does it mess up your sub files? What do you mean by that? MSAA can be turned on or off with render states. It's actually turned off for UI rendering.

Edited by Distraught

992404397646696589.png
Former C++ Developer at Gameloft on DML
Join my Discord: Distraught Labs

.png.pngFor example, in the tooltip, there is a spacing issue; I'm not sure if it's due to my implementation or my graphics card.

  • Honorable Member

Do you actually use the files I released or you just tried to take some code from it? 🙂

Edited by Distraught

992404397646696589.png
Former C++ Developer at Gameloft on DML
Join my Discord: Distraught Labs

9 minutes ago, Distraught said:

¿Realmente utilizas los archivos que publiqué o simplemente intentaste tomar algo de código de ellos?🙂

I just used your code, that's why I said I'm not sure if it's my fault, and I left something from MSSA unfinished.

  • Honorable Member

Then it doesn't concern me.

I do not intend to provide any support for taking out codes from the repositories, because it has nothing to do with my release.
If you need support for your server, I suggest trying to ask for help in the designated area or contacting someone for paid help.

Edited by Distraught

992404397646696589.png
Former C++ Developer at Gameloft on DML
Join my Discord: Distraught Labs

  • Active+ Member
3 minutes ago, Distraught said:

Then it doesn't concern me.

I do not intend to provide any support for taking out codes from the repositories, because it has nothing to do with my release.
If you need support for your server, I suggest trying to ask for help in the designated area or contacting someone for paid help.

Is there any progress on new pack system? I mentioned it a few comments ago.

hasanmacit

  • Active Member
6 hours ago, cris690 said:

.png.pngFor example, in the tooltip, there is a spacing issue; I'm not sure if it's due to my implementation or my graphics card.

This "bug" is a hundred years old. This strange outline usually appears when changes are made and the client is built without cleaning the project, which can lead to phantom bugs. But I agree with @Distraught you shouldn't discuss such things here unless you want to help develop the project.

Edited by Helia01
  • Love 1

I think it depends on the graphics card; maybe other people won't have the same problem. I extracted the files: DirectX9ex, audio library, and image_stb, and everything seems fine except when I enable MSAA.  The files themselves are fine, but I also want to check the package system; I'll extract that as well.

  • Honorable Member
51 minutes ago, cris690 said:

I think it depends on the graphics card; maybe other people won't have the same problem. I extracted the files: DirectX9ex, audio library, and image_stb, and everything seems fine except when I enable MSAA.  The files themselves are fine, but I also want to check the package system; I'll extract that as well.

Maybe because not just those changes are needed? Anyway, I already pointed out what the root of your problem is (UI rendering should not use MSAA).
But please, this topic is for the development of these files - and not your server, so let's keep this conversation regarding the actual files we shared.

Edited by Distraught
  • Love 2

992404397646696589.png
Former C++ Developer at Gameloft on DML
Join my Discord: Distraught Labs

  • Active+ Member
On 9/28/2025 at 4:11 PM, Mind Rapist said:

[error] [bool DESC::HandshakeProcess(DWORD, long, bool)()] handshake retry limit reached! (limit 32 character !NO CHARACTER!)

Has anyone solved this or can provide any pointers? Could this be related to the unsynced packets between server <-> client?

4 minutes ago, Mind Rapist said:

Has anyone solved this or can provide any pointers? Could this be related to the unsynced packets between server <-> client?

You can reproduce ?

  • Active+ Member
1 minute ago, mmorse3399 said:

You can reproduce ?

I just install server, compile server + db + qc, execute qc, turn on the server and try to login to the game there's really nothing else I did. Wrong username/password displays the message it's supposed to. Correct credentials refresh login screen and print this into the channel's core syserr

43 minutes ago, Mind Rapist said:

I just install server, compile server + db + qc, execute qc, turn on the server and try to login to the game there's really nothing else I did. Wrong username/password displays the message it's supposed to. Correct credentials refresh login screen and print this into the channel's core syserr

Short answer: that log is thrown by the server’s handshake loop when the client never gets into a “time-in-sync” state after 32 tries. It usually means the client never replied, or the round-trip timing never stabilizes within the allowed bias window, so the server gives up before a character was bound — hence “!NO CHARACTER!”.

 

On connect, the server enters PHASE_HANDSHAKE, sends HEADER_GC_HANDSHAKE with dwTime and an initial lDelta=0 (SendHandshake). When the reply arrives, HandshakeProcess(dwTime, lDelta, bInfiniteRetry=false) checks how far off we are:

int bias = (int)(dwCurTime - (dwTime + lDelta));
if (bias >= 0 && bias <= 50) return true; // success
// else recompute delta and retry (up to HANDSHAKE_RETRY_LIMIT)
if (++m_iHandshakeRetry > HANDSHAKE_RETRY_LIMIT) {
    sys_err("handshake retry limit reached! (limit %d character %s)", ...);
    SetPhase(PHASE_CLOSE);
    return false;
}
SendHandshake(dwCurTime, lNewDelta);

(bias window=≤50ms, limit=32). This is exactly where your error comes from.

 

On client side in HandShakePhase, on HEADER_GC_HANDSHAKE it sets its server time, then echoes the packet back with dwTime advanced by 2*lDelta and lDelta=0. That is the reply the server waits for to recalc the delta and converge. There’s also the newer “time sync” path that sends HEADER_CG_TIME_SYNC after setting m_kServerTimeSync — functionally the same timing dance.

 

Possible causes.. Very high or jittery latency.. so the lNewDelta estimate never converges into the ±50 ms window before 32 attempts. The code recomputes lNewDelta=(dwCurTime-dwTime)/2 each retry; if your RTT spikes wildly, bias can keep missing

How to test if if the cause is latency ?  change if (bias >= 0 && bias <= 50) to <= 200 and see if it succeeds. If it does, it’s network latency issue.

Edited by mmorse3399
  • Active+ Member
3 hours ago, Mind Rapist said:

Has anyone solved this or can provide any pointers? Could this be related to the unsynced packets between server <-> client?

Based on the git repo and your message, try to change type of lDelta parameter in desc.cpp HandshakeProcess to int32_t and inside the function also change lNewDelta to int32_t and the cast from long to int32_t

 

Awesome contribution to the community, W

Edited by m2Ciaran
  • Active+ Member
11 hours ago, m2Ciaran said:

Based on the git repo and your message, try to change type of lDelta parameter in desc.cpp HandshakeProcess to int32_t and inside the function also change lNewDelta to int32_t and the cast from long to int32_t

 

Awesome contribution to the community, W

OMG that was it. TBH I never would have found this (I'm not that experienced). This indeed fixed the issue and I was able to login to the game.

Full fix for the entire source for those who are even less experienced than me and are facing the same issue:

desc.cpp:

Spoiler
void DESC::SendHandshake(DWORD dwCurTime, int32_t lNewDelta)
{
	TPacketGCHandshake pack;

	pack.bHeader		= HEADER_GC_HANDSHAKE;
	pack.dwHandshake	= m_dwHandshake;
	pack.dwTime			= dwCurTime;
	pack.lDelta			= lNewDelta;

	Packet(&pack, sizeof(TPacketGCHandshake));

	m_dwHandshakeSentTime = dwCurTime;
	m_bHandshaking = true;
}

bool DESC::HandshakeProcess(DWORD dwTime, int32_t lDelta, bool bInfiniteRetry)
{
	DWORD dwCurTime = get_dword_time();

	if (lDelta < 0)
	{
		sys_err("Desc::HandshakeProcess : value error (lDelta %" PRId32 ", ip %s)", lDelta, m_stHost.c_str());
		return false;
	}

	int bias = (int) (dwCurTime - (dwTime + lDelta));

	if (bias >= 0 && bias <= 50)
	{
		if (bInfiniteRetry)
		{
			BYTE bHeader = HEADER_GC_TIME_SYNC;
			Packet(&bHeader, sizeof(BYTE));
		}

		if (GetCharacter())
			sys_log(0, "Handshake: client_time %u server_time %u name: %s", m_dwClientTime, dwCurTime, GetCharacter()->GetName());
		else
			sys_log(0, "Handshake: client_time %u server_time %u", m_dwClientTime, dwCurTime, lDelta);

		m_dwClientTime = dwCurTime;
		m_bHandshaking = false;
		return true; 
	}

	int32_t lNewDelta = (int32_t) (dwCurTime - dwTime) / 2;

	if (lNewDelta < 0)
	{
		sys_log(0, "Handshake: lower than zero %d", lNewDelta);
		lNewDelta = (dwCurTime - m_dwHandshakeSentTime) / 2;
	}

	sys_log(1, "Handshake: ServerTime %u dwTime %u lDelta %" PRId32 " SentTime %u lNewDelta %" PRId32, dwCurTime, dwTime, lDelta, m_dwHandshakeSentTime, lNewDelta);

	if (!bInfiniteRetry)
		if (++m_iHandshakeRetry > HANDSHAKE_RETRY_LIMIT)
		{
			sys_err("handshake retry limit reached! (limit %d character %s)", 
					HANDSHAKE_RETRY_LIMIT, GetCharacter() ? GetCharacter()->GetName() : "!NO CHARACTER!");
			SetPhase(PHASE_CLOSE);
			return false;
		}

	SendHandshake(dwCurTime, lNewDelta);
	return false;
}

 

desc.h:

Spoiler
		void			StartHandshake(DWORD _dw);
		void			SendHandshake(DWORD dwCurTime, int32_t lNewDelta);

 

With this the entire source defines lDelta and lNewDelta as an int32_t and the log print is compatible with the type. This should definitely be in the next official repo update.

Other stuff I found that could really use some fixing:

Server:

[2025-09-30 18:40:53.861] [error] [bool quest::CQuestManager::Click(unsigned int, LPCHARACTER)()] CQuestManager::Click(pid=1, target_npc_name=Teleporter) - NOT EXIST NPC RACE VNUM[9012]
[2025-09-30 18:40:54.911] [error] [bool quest::CQuestManager::Click(unsigned int, LPCHARACTER)()] CQuestManager::Click(pid=1, target_npc_name=Teleporter) - NOT EXIST NPC RACE VNUM[9012]
[2025-09-30 18:41:27.844] [error] [bool quest::CQuestManager::Click(unsigned int, LPCHARACTER)()] CQuestManager::Click(pid=1, target_npc_name=Stable Boy) - NOT EXIST NPC RACE VNUM[20349]

And no they are not in questnpc.txt in the english/quest folder but so as in every other SF, yet in this one none of the NPCs are able to speak 🤔

 

Next up I encountered some client issues:

.png

Not sure if this is from the DX9 update or some Granny version missmatch or some texture files missing but this is happening to all 90+ maps (Cape, Dawn, Thunder, Bay). Here are some logs:

ErrorLog:

Exception Type: 0xc0000005

rax: 0x000002958373ab34	rbx: 0x00000295806437e8
rcx: 0x000002958373b0f4	rdx: 0x0000000000000000
rsi: 0x000002958373b0f4	rdi: 0x0000000000000000
rbp: 0x0000000000000001	rsp: 0x000000db1f4fc180

0x00007ff6f92833a8	D:\whatever\client\Metin2_Release.exe
0x00000295806437e8	
0x0000000000000001	
0x000002958373b0f4	C:\Windows\SYSTEM32\dbghelp.dll
0x0000029582fc87d0	
0x00007ff600000000	
0x0000029580643898	

syserr:

Spoiler
0930 14:35:01071 :: SEND> 206 4294967246(0xFFFFFFCE) (1)
0930 14:35:01072 :: ce
0930 14:35:02408 :: RECV< HEADER_GC_PHASE 4294967293(0xFFFFFFFD) (1)
0930 14:35:02408 :: fd
0930 14:35:02425 :: RECV< HEADER_GC_CHARACTER_ADD 1(0x1) (1)
0930 14:35:02425 :: 01
0930 14:35:02441 :: RECV< HEADER_GC_HANDSHAKE 4294967295(0xFFFFFFFF) (1)
0930 14:35:02441 :: ff
0930 14:35:02456 :: RECV< 233 4294967273(0xFFFFFFE9) (1)
0930 14:35:02456 :: e9
0930 14:35:02475 :: RECV< 68 68(0x44) (1)
0930 14:35:02476 :: 44
0930 14:35:02490 :: RECV< 145 4294967185(0xFFFFFF91) (1)
0930 14:35:02490 :: 91
0930 14:35:02507 :: RECV< HEADER_GC_ALERT 35(0x23) (1)
0930 14:35:02507 :: 23
0930 14:35:02524 :: RECV< 221 4294967261(0xFFFFFFDD) (1)
0930 14:35:02525 :: dd
0930 14:35:02540 :: RECV< 103 103(0x67) (1)
0930 14:35:02540 :: 67
0930 14:35:02556 :: RECV< HEADER_GC_CHARACTER_MOVE 3(0x3) (1)
0930 14:35:02556 :: 03
0930 14:35:02655 :: RECV< 210 4294967250(0xFFFFFFD2) (1)
0930 14:35:02655 :: d2
0930 14:35:02655 :: RECV< HEADER_GC_CHARACTER_MOVE 3(0x3) (4)
0930 14:35:02656 :: 03, 00, 00, 00
0930 14:35:02656 :: RECV< HEADER_GC_SYNC_POSITION 5(0x5) (3)
0930 14:35:02656 :: 05, 2b, 01
0930 14:35:02657 :: RECV< HEADER_GC_CHAT 4(0x4) (3)
0930 14:35:02657 :: 04, 2b, 01
0930 14:35:02657 :: RECV< HEADER_GC_CHARACTER_MOVE 3(0x3) (3)
0930 14:35:02657 :: 03, 2b, 01
0930 14:35:03960 :: RECV< HEADER_GC_PHASE 4294967293(0xFFFFFFFD) (2)
0930 14:35:03960 :: fd, 01
0930 14:35:03961 :: RECV< HEADER_GC_HANDSHAKE 4294967295(0xFFFFFFFF) (13)
0930 14:35:03961 :: ff, c5, 2f, f1, 34, cf, 71, 03, 00, 00, 00, 00, 00
0930 14:35:03962 :: SEND> HEADER_CG_HANDSHAKE 4294967295(0xFFFFFFFF) (13)
0930 14:35:03962 :: ff, c5, 2f, f1, 34, cf, 71, 03, 00, 00, 00, 00, 00
0930 14:35:04008 :: RECV< HEADER_GC_KEY_AGREEMENT 4294967291(0xFFFFFFFB) (261)
0930 14:35:04009 :: 0930 14:35:04208 :: SEND> HEADER_CG_KEY_AGREEMENT 4294967291(0xFFFFFFFB) (261)
0930 14:35:04209 :: 0930 14:35:04239 :: RECV< HEADER_GC_KEY_AGREEMENT_COMPLETED 4294967290(0xFFFFFFFA) (4)
0930 14:35:04239 :: fa, 00, 00, 00
0930 14:35:04272 :: RECV< HEADER_GC_PHASE 4294967293(0xFFFFFFFD) (2)
0930 14:35:04272 :: fd, 0a
0930 14:35:04273 :: SEND> HEADER_CG_LOGIN3 111(0x6F) (65)
0930 14:35:04273 :: 6f, 61, 64, 6d, 69, 6e, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 31, 32, 33, 34, 35, 36, 37, 38, 39, 00, 00, 00, 00, 00, 00, 00, 00, b6, 19, 8b, 03, 8b, fd, 44, 21, bd, c1, 61, 38, 36, 7c, f6, 19
0930 14:35:04274 :: SEND> HEADER_CG_PARTY_PARAMETER 78(0x4E) (1)
0930 14:35:04274 :: 4e
0930 14:35:04389 :: RECV< HEADER_GC_AUTH_SUCCESS 4294967190(0xFFFFFF96) (6)
0930 14:35:04389 :: 96, 10, c5, 59, 26, 01
0930 14:35:04420 :: RECV< HEADER_GC_PHASE 4294967293(0xFFFFFFFD) (2)
0930 14:35:04420 :: fd, 01
0930 14:35:04437 :: RECV< HEADER_GC_HANDSHAKE 4294967295(0xFFFFFFFF) (13)
0930 14:35:04437 :: ff, 67, 93, 22, 48, bd, 6f, 03, 00, 00, 00, 00, 00
0930 14:35:04438 :: SEND> HEADER_CG_HANDSHAKE 4294967295(0xFFFFFFFF) (13)
0930 14:35:04438 :: ff, 67, 93, 22, 48, bd, 6f, 03, 00, 00, 00, 00, 00
0930 14:35:04488 :: RECV< HEADER_GC_HANDSHAKE 4294967295(0xFFFFFFFF) (13)
0930 14:35:04488 :: ff, 67, 93, 22, 48, 01, 70, 03, 00, 22, 00, 00, 00
0930 14:35:04489 :: SEND> HEADER_CG_HANDSHAKE 4294967295(0xFFFFFFFF) (13)
0930 14:35:04489 :: ff, 67, 93, 22, 48, 45, 70, 03, 00, 00, 00, 00, 00
0930 14:35:04536 :: RECV< HEADER_GC_HANDSHAKE 4294967295(0xFFFFFFFF) (13)
0930 14:35:04536 :: ff, 67, 93, 22, 48, 32, 70, 03, 00, 18, 00, 00, 00
0930 14:35:04537 :: SEND> HEADER_CG_HANDSHAKE 4294967295(0xFFFFFFFF) (13)
0930 14:35:04537 :: ff, 67, 93, 22, 48, 62, 70, 03, 00, 00, 00, 00, 00
0930 14:35:04586 :: RECV< HEADER_GC_KEY_AGREEMENT 4294967291(0xFFFFFFFB) (261)
0930 14:35:04587 :: 0930 14:35:04785 :: SEND> HEADER_CG_KEY_AGREEMENT 4294967291(0xFFFFFFFB) (261)
0930 14:35:04787 :: 0930 14:35:04818 :: RECV< HEADER_GC_KEY_AGREEMENT_COMPLETED 4294967290(0xFFFFFFFA) (4)
0930 14:35:04818 :: fa, 00, 00, 00
0930 14:35:04850 :: RECV< HEADER_GC_PHASE 4294967293(0xFFFFFFFD) (2)
0930 14:35:04850 :: fd, 02
0930 14:35:04852 :: SEND> HEADER_CG_LOGIN2 109(0x6D) (52)
0930 14:35:04852 :: 6d, 61, 64, 6d, 69, 6e, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 10, c5, 59, 26, b6, 19, 8b, 03, 8b, fd, 44, 21, bd, c1, 61, 38, 36, 7c, f6, 19
0930 14:35:04852 :: SEND> HEADER_CG_PARTY_PARAMETER 78(0x4E) (1)
0930 14:35:04852 :: 4e
0930 14:35:04983 :: RECV< HEADER_GC_EMPIRE 90(0x5A) (2)
0930 14:35:04983 :: 5a, 03
0930 14:35:04998 :: RECV< HEADER_GC_PHASE 4294967293(0xFFFFFFFD) (2)
0930 14:35:04998 :: fd, 03
0930 14:35:05075 ::      ѱ    ֹ   (#2    ) cannot find icon file. setting to default.
0930 14:35:05079 ::          ȱ   +0(#13180) cannot find icon file. setting to default.
0930 14:35:05079 ::          ȱ   +1(#13181) cannot find icon file. setting to default.
0930 14:35:05079 ::          ȱ   +2(#13182) cannot find icon file. setting to default.
0930 14:35:05079 ::          ȱ   +3(#13183) cannot find icon file. setting to default.
0930 14:35:05080 ::          ȱ   +4(#13184) cannot find icon file. setting to default.
0930 14:35:05080 ::          ȱ   +5(#13185) cannot find icon file. setting to default.
0930 14:35:05080 ::          ȱ   +6(#13186) cannot find icon file. setting to default.
0930 14:35:05080 ::          ȱ   +7(#13187) cannot find icon file. setting to default.
0930 14:35:05080 ::          ȱ   +8(#13188) cannot find icon file. setting to default.
0930 14:35:05081 ::          ȱ   +9(#13189) cannot find icon file. setting to default.
0930 14:35:05083 ::         ġ    (#22020) cannot find icon file. setting to default.
0930 14:35:05084 ::            ̵   (#22030) cannot find icon file. setting to default.
0930 14:35:05084 ::                (#22040) cannot find icon file. setting to default.
0930 14:35:05084 ::           ȯ    (#22050) cannot find icon file. setting to default.
0930 14:35:05085 ::                 (#29001) cannot find icon file. setting to default.
0930 14:35:05088 ::         û      (#29002) cannot find icon file. setting to default.
0930 14:35:05088 ::         Ȳ      (#29003) cannot find icon file. setting to default.
0930 14:35:05088 ::         ȫ      (#29004) cannot find icon file. setting to default.
0930 14:35:05088 ::          찡    (#29005) cannot find icon file. setting to default.
0930 14:35:05088 ::           Ȳ ּ (#29006) cannot find icon file. setting to default.
0930 14:35:05089 ::           û ּ (#29007) cannot find icon file. setting to default.
0930 14:35:05089 ::           û ż (#29008) cannot find icon file. setting to default.
0930 14:35:05089 ::           Ȳ ż (#29009) cannot find icon file. setting to default.
0930 14:35:05089 ::           ȫ ż (#29010) cannot find icon file. setting to default.
0930 14:35:05089 ::             ż (#29011) cannot find icon file. setting to default.
0930 14:35:05089 ::           û ż (#29012) cannot find icon file. setting to default.
0930 14:35:05089 ::           Ȳ ż (#29013) cannot find icon file. setting to default.
0930 14:35:05090 ::           ȫ ż (#29014) cannot find icon file. setting to default.
0930 14:35:05090 ::             ż (#29015) cannot find icon file. setting to default.
0930 14:35:05090 ::        Ȳ ݾ ݴ (#30103) cannot find icon file. setting to default.
0930 14:35:05090 ::     縷    Ź   (#30104) cannot find icon file. setting to default.
0930 14:35:05091 ::               (#30105) cannot find icon file. setting to default.
0930 14:35:05091 ::          Ӵ    (#30106) cannot find icon file. setting to default.
0930 14:35:05091 ::            ۰   (#30107) cannot find icon file. setting to default.
0930 14:35:05091 ::    ڱ           (#30108) cannot find icon file. setting to default.
0930 14:35:05091 ::     縷    Ź   (#30109) cannot find icon file. setting to default.
0930 14:35:05092 ::     ľȼ        (#30110) cannot find icon file. setting to default.
0930 14:35:05092 ::               (#30111) cannot find icon file. setting to default.
0930 14:35:05092 ::                (#30112) cannot find icon file. setting to default.
0930 14:35:05092 ::         б      (#30113) cannot find icon file. setting to default.
0930 14:35:05092 ::                 (#30114) cannot find icon file. setting to default.
0930 14:35:05092 ::           ġ    (#30115) cannot find icon file. setting to default.
0930 14:35:05092 ::                (#30117) cannot find icon file. setting to default.
0930 14:35:05093 ::                (#30118) cannot find icon file. setting to default.
0930 14:35:05094 ::      VIP-Feature(#38001) cannot find icon file. setting to default.
0930 14:35:05094 :: Tombola_ticket_today(#38002) cannot find icon file. setting to default.
0930 14:35:05094 :: Tombola_ticket_tomorrow(#38003) cannot find icon file. setting to default.
0930 14:35:05094 ::   Tombola_reroll(#38004) cannot find icon file. setting to default.
0930 14:35:05094 ::   TombolaPP_spin(#38005) cannot find icon file. setting to default.
0930 14:35:05094 ::      Momo-Reroll(#38006) cannot find icon file. setting to default.
0930 14:35:05094 ::     Ҹ         (#40005) cannot find icon file. setting to default.
0930 14:35:05096 ::        ij    ۼ (#40006) cannot find icon file. setting to default.
0930 14:35:05102 ::     ij          (#40007) cannot find icon file. setting to default.
0930 14:35:05103 ::                 (#50041) cannot find icon file. setting to default.
0930 14:35:05103 ::        ¸    ü (#50062) cannot find icon file. setting to default.
0930 14:35:05103 ::      밢        (#50118) cannot find icon file. setting to default.
0930 14:35:05103 ::                 (#50119) cannot find icon file. setting to default.
0930 14:35:05104 ::           â    (#50805) cannot find icon file. setting to default.
0930 14:35:05104 ::                 (#50806) cannot find icon file. setting to default.
0930 14:35:05104 ::              ʾ (#50807) cannot find icon file. setting to default.
0930 14:35:05104 ::         ͳ     (#50808) cannot find icon file. setting to default.
0930 14:35:05104 ::          ε鷹  (#50809) cannot find icon file. setting to default.
0930 14:35:05104 ::         ȫȭ    (#50810) cannot find icon file. setting to default.
0930 14:35:05104 ::              ߾ (#50811) cannot find icon file. setting to default.
0930 14:35:05106 ::              ʾ (#50812) cannot find icon file. setting to default.
0930 14:35:05106 ::             ິ(#50901) cannot find icon file. setting to default.
0930 14:35:05106 ::    Ȱ ɾ        (#50905) cannot find icon file. setting to default.
0930 14:35:05106 ::     ǵ          (#50906) cannot find icon file. setting to default.
0930 14:35:05106 ::      ȯ         (#50907) cannot find icon file. setting to default.
0930 14:35:05106 ::                 (#50908) cannot find icon file. setting to default.
0930 14:35:05106 ::       ǵ        (#50909) cannot find icon file. setting to default.
0930 14:35:05107 ::    Ȱ ɾ        (#50910) cannot find icon file. setting to default.
0930 14:35:05107 ::              Ұ (#70103) cannot find icon file. setting to default.
0930 14:35:05109 ::                (#71031) cannot find icon file. setting to default.
0930 14:35:05109 ::            ȸ  (#71047) cannot find icon file. setting to default.
0930 14:35:05109 ::          Ǻ     (#71091) cannot find icon file. setting to default.
0930 14:35:05110 ::            ǹ   (#72303) cannot find icon file. setting to default.
0930 14:35:05110 ::       ູ       (#72304) cannot find icon file. setting to default.
0930 14:35:05111 ::               ö(#72308) cannot find icon file. setting to default.
0930 14:35:05114 ::     ߰          (#72309) cannot find icon file. setting to default.
0930 14:35:05114 ::          ־ȼ   (#72310) cannot find icon file. setting to default.
0930 14:35:05114 ::              ȯ(#72311) cannot find icon file. setting to default.
0930 14:35:05115 ::                (#72312) cannot find icon file. setting to default.
0930 14:35:05115 ::               (#72313) cannot find icon file. setting to default.
0930 14:35:05115 ::           ູ  (#72314) cannot find icon file. setting to default.
0930 14:35:05115 ::            ָӴ (#80001) cannot find icon file. setting to default.
0930 14:35:05116 ::                 (#80002) cannot find icon file. setting to default.
0930 14:35:05116 ::               (#90001) cannot find icon file. setting to default.
0930 14:35:05116 ::                 (#90002) cannot find icon file. setting to default.
0930 14:35:05116 ::                 (#90004) cannot find icon file. setting to default.
0930 14:35:05116 ::                 (#90006) cannot find icon file. setting to default.
0930 14:35:05117 ::                 (#90007) cannot find icon file. setting to default.
0930 14:35:05566 :: RECV< 32 32(0x20) (329)
0930 14:35:05567 :: 0930 14:35:05599 :: RECV< HEADER_GC_PHASE 4294967293(0xFFFFFFFD) (2)
0930 14:35:05599 :: fd, 01
0930 14:35:05615 :: RECV< HEADER_GC_HANDSHAKE 4294967295(0xFFFFFFFF) (13)
0930 14:35:05615 :: ff, fb, f7, e5, 91, 51, 74, 03, 00, 00, 00, 00, 00
0930 14:35:05615 :: SEND> HEADER_CG_MARK_LOGIN 100(0x64) (9)
0930 14:35:05615 :: 64, 00, 00, 00, 00, 00, 00, 00, 00
0930 14:35:05665 :: RECV< HEADER_GC_PHASE 4294967293(0xFFFFFFFD) (2)
0930 14:35:05665 :: fd, 02
0930 14:35:05665 :: SEND> 104 104(0x68) (1)
0930 14:35:05665 :: 68
0930 14:35:05714 :: invalid idx 0
0930 14:35:05975 :: CResourceManager::GetResourcePointer: File not exist d:/ymir work/effect/affect/damagevalue/0.jpg
0930 14:35:05979 :: CResourceManager::GetResourcePointer: File not exist d:/ymir work/effect/affect/damagevalue/poison0.jpg
0930 14:35:09739 :: RECV< HEADER_GC_PHASE 4294967293(0xFFFFFFFD) (2)
0930 14:35:09739 :: fd, 01
0930 14:35:09755 :: RECV< HEADER_GC_HANDSHAKE 4294967295(0xFFFFFFFF) (13)
0930 14:35:09755 :: ff, 46, 4f, 67, 22, 76, 84, 03, 00, 00, 00, 00, 00
0930 14:35:09756 :: SEND> HEADER_CG_HANDSHAKE 4294967295(0xFFFFFFFF) (13)
0930 14:35:09756 :: ff, 46, 4f, 67, 22, 76, 84, 03, 00, 00, 00, 00, 00
0930 14:35:09805 :: RECV< HEADER_GC_HANDSHAKE 4294967295(0xFFFFFFFF) (13)
0930 14:35:09805 :: ff, 46, 4f, 67, 22, ca, 84, 03, 00, 2a, 00, 00, 00
0930 14:35:09806 :: SEND> HEADER_CG_HANDSHAKE 4294967295(0xFFFFFFFF) (13)
0930 14:35:09806 :: ff, 46, 4f, 67, 22, 1e, 85, 03, 00, 00, 00, 00, 00
0930 14:35:09856 :: RECV< HEADER_GC_HANDSHAKE 4294967295(0xFFFFFFFF) (13)
0930 14:35:09856 :: ff, 46, 4f, 67, 22, fc, 84, 03, 00, 19, 00, 00, 00
0930 14:35:09857 :: SEND> HEADER_CG_HANDSHAKE 4294967295(0xFFFFFFFF) (13)
0930 14:35:09857 :: ff, 46, 4f, 67, 22, 2e, 85, 03, 00, 00, 00, 00, 00
0930 14:35:09904 :: RECV< HEADER_GC_KEY_AGREEMENT 4294967291(0xFFFFFFFB) (261)
0930 14:35:09905 :: 0930 14:35:10093 :: SEND> HEADER_CG_KEY_AGREEMENT 4294967291(0xFFFFFFFB) (261)
0930 14:35:10094 :: 0930 14:35:10120 :: RECV< HEADER_GC_KEY_AGREEMENT_COMPLETED 4294967290(0xFFFFFFFA) (4)
0930 14:35:10120 :: fa, 00, 00, 00
0930 14:35:10153 :: RECV< HEADER_GC_PHASE 4294967293(0xFFFFFFFD) (2)
0930 14:35:10153 :: fd, 02
0930 14:35:10154 :: SEND> HEADER_CG_LOGIN2 109(0x6D) (52)
0930 14:35:10154 :: 6d, 61, 64, 6d, 69, 6e, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 10, c5, 59, 26, b6, 19, 8b, 03, 8b, fd, 44, 21, bd, c1, 61, 38, 36, 7c, f6, 19
0930 14:35:10155 :: SEND> HEADER_CG_PARTY_PARAMETER 78(0x4E) (1)
0930 14:35:10155 :: 4e
0930 14:35:10284 :: RECV< HEADER_GC_EMPIRE 90(0x5A) (2)
0930 14:35:10284 :: 5a, 03
0930 14:35:10300 :: RECV< HEADER_GC_PHASE 4294967293(0xFFFFFFFD) (2)
0930 14:35:10300 :: fd, 03
0930 14:35:10361 :: RECV< 32 32(0x20) (329)
0930 14:35:10362 :: 0930 14:35:10525 :: SEND> HEADER_CG_PLAYER_SELECT 6(0x6) (2)
0930 14:35:10525 :: 06, 00
0930 14:35:10526 :: SEND> 217 4294967257(0xFFFFFFD9) (1)
0930 14:35:10526 :: d9
0930 14:35:10614 :: RECV< HEADER_GC_PLAYER_POINT_CHANGE 17(0x11) (17)
0930 14:35:10614 :: 11, 00, 00, 00, cc, 5e, 00, 00, 11, 00, 00, 00, 00, 64, 00, 00, 00
0930 14:35:10630 :: RECV< HEADER_GC_PLAYER_POINT_CHANGE 17(0x11) (17)
0930 14:35:10630 :: 11, 00, 00, 00, cc, 5e, 00, 00, 12, 00, 00, 00, 00, 86, 01, 00, 00
0930 14:35:10647 :: RECV< HEADER_GC_PLAYER_POINT_CHANGE 17(0x11) (17)
0930 14:35:10647 :: 11, 00, 00, 00, cc, 5e, 00, 00, 14, 00, 00, 00, 00, b1, 00, 00, 00
0930 14:35:10663 :: RECV< HEADER_GC_PLAYER_POINT_CHANGE 17(0x11) (17)
0930 14:35:10663 :: 11, 00, 00, 00, cc, 5e, 00, 00, 10, 00, 00, 00, 00, b1, 00, 00, 00
0930 14:35:10680 :: RECV< HEADER_GC_PLAYER_POINT_CHANGE 17(0x11) (17)
0930 14:35:10680 :: 11, 00, 00, 00, cc, 5e, 00, 00, 14, 00, 00, 00, 00, c3, 00, 00, 00
0930 14:35:10697 :: RECV< HEADER_GC_PLAYER_POINT_CHANGE 17(0x11) (17)
0930 14:35:10697 :: 11, 00, 00, 00, cc, 5e, 00, 00, 16, 00, 00, 00, 00, f0, 00, 00, 00
0930 14:35:10712 :: RECV< HEADER_GC_PLAYER_POINT_CHANGE 17(0x11) (17)
0930 14:35:10712 :: 11, 00, 00, 00, cc, 5e, 00, 00, 17, 00, 00, 00, 00, 96, 00, 00, 00
0930 14:35:10729 :: RECV< HEADER_GC_PLAYER_POINT_CHANGE 17(0x11) (17)
0930 14:35:10729 :: 11, 00, 00, 00, cc, 5e, 00, 00, 06, 00, 00, 00, 00, 5c, 12, 00, 00
0930 14:35:10746 :: RECV< HEADER_GC_PLAYER_POINT_CHANGE 17(0x11) (17)
0930 14:35:10747 :: 11, 00, 00, 00, cc, 5e, 00, 00, 08, 00, 00, 00, 00, f4, 01, 00, 00
0930 14:35:10761 :: RECV< HEADER_GC_PHASE 4294967293(0xFFFFFFFD) (2)
0930 14:35:10761 :: fd, 04
0930 14:35:10779 :: RECV< 138 4294967178(0xFFFFFF8A) (75)
0930 14:35:10779 :: 8a, cc, 5e, 00, 00, 00, 00, 5b, 53, 41, 5d, 41, 64, 6d, 69, 6e, 00, 00, 00, 56, 90, b6, 20, 08, 00, 00, 00, 00, 97, 14, 7b, 34, 6d, 74, 2e, 6d, 70, 33, 00, 08, 00, 00, 00, 21, 63, 9b, 50, 00, 00, 00, 00, 70, 90, b6, 20, 08, 00, 00, 00, 00, 3f, a4, 4f, 11, 00, 48, 3f, 19, 00, 00, 00, 00, 00, 03, 02
0930 14:35:10781 :: SEND> 241 4294967281(0xFFFFFFF1) (67)
0930 14:35:10781 :: f1, 4d, 65, 74, 69, 6e, 32, 5f, 44, 65, 62, 75, 67, 2e, 65, 78, 65, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, cc, 31, 32, 31, 35, 39, 35, 35, 32, 30, 35, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, cc
0930 14:35:10781 :: SEND> HEADER_CG_PLAYER_SELECT 6(0x6) (1)
0930 14:35:10781 :: 06
0930 14:35:10795 :: RECV< HEADER_GC_CHAT 4(0x4) (9)
0930 14:35:10795 :: 04, 14, 00, 05, 00, 00, 00, 00, 03
0930 14:35:10795 :: RECV< HEADER_GC_CHARACTER_ADD2 120(0x78) (11)
0930 14:35:10795 :: 78, 6d, 61, 73, 5f, 62, 6f, 6f, 6d, 20, 32
0930 14:35:10797 :: RECV< HEADER_GC_QUICKSLOT_ADD 28(0x1C) (4)
0930 14:35:10797 :: 1c, 00, 02, 02
0930 14:35:10797 :: RECV< HEADER_GC_QUICKSLOT_ADD 28(0x1C) (4)
0930 14:35:10798 :: 1c, 01, 02, 03
0930 14:35:10799 :: RECV< HEADER_GC_QUICKSLOT_ADD 28(0x1C) (4)
0930 14:35:10799 :: 1c, 02, 02, 05
0930 14:35:10799 :: RECV< HEADER_GC_QUICKSLOT_ADD 28(0x1C) (4)
0930 14:35:10799 :: 1c, 03, 02, 04
0930 14:35:10799 :: RECV< HEADER_GC_QUICKSLOT_ADD 28(0x1C) (4)
0930 14:35:10799 :: 1c, 04, 02, 01
0930 14:35:10799 :: RECV< HEADER_GC_QUICKSLOT_ADD 28(0x1C) (4)
0930 14:35:10800 :: 1c, 06, 01, 0a
0930 14:35:10800 :: RECV< HEADER_GC_QUICKSLOT_ADD 28(0x1C) (4)
0930 14:35:10800 :: 1c, 07, 01, 0b
0930 14:35:10800 :: RECV< HEADER_GC_QUICKSLOT_ADD 28(0x1C) (4)
0930 14:35:10801 :: 1c, 08, 02, 09
0930 14:35:10801 :: RECV< HEADER_GC_QUICKSLOT_ADD 28(0x1C) (4)
0930 14:35:10801 :: 1c, 09, 02, 0b
0930 14:35:10801 :: RECV< HEADER_GC_QUICKSLOT_ADD 28(0x1C) (4)
0930 14:35:10801 :: 1c, 0a, 02, 0d
0930 14:35:10802 :: RECV< HEADER_GC_PLAYER_POINTS 16(0x10) (1021)
0930 14:35:10804 :: 0930 14:35:10804 :: RECV< HEADER_GC_SKILL_LEVEL_NEW 76(0x4C) (2551)
0930 14:35:10810 :: 0930 14:35:10810 :: RECV< HEADER_GC_ITEM_SET 21(0x15) (51)
0930 14:35:10811 :: 15, 01, 9a, 00, 7b, 69, 00, 00, c8, 14, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00
0930 14:35:10811 :: RECV< HEADER_GC_ITEM_SET 21(0x15) (51)
0930 14:35:10811 :: 15, 01, 11, 00, 5a, 15, 01, 00, 01, 00, 20, 00, 00, 80, a1, 01, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00
0930 14:35:10812 :: RECV< HEADER_GC_ITEM_SET 21(0x15) (51)
0930 14:35:10812 :: 15, 01, 29, 00, aa, 11, 01, 00, 01, 00, 20, 00, 00, 80, a1, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00
0930 14:35:10812 :: RECV< HEADER_GC_ITEM_SET 21(0x15) (51)
0930 14:35:10813 :: 15, 01, 12, 00, d4, 15, 01, 00, 01, 00, 24, 00, 00, 80, 21, 01, 00, 00, 00, 00, 00, 00, 13, 00, 00, 00, 7e, 06, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00
0930 14:35:10813 :: RECV< HEADER_GC_ITEM_SET 21(0x15) (51)
0930 14:35:10814 :: 15, 01, 61, 00, fe, 1b, 01, 00, 01, 00, 20, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 1e, 00, 00, 00, 1d, 05, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00
0930 14:35:10814 :: RECV< HEADER_GC_PLAYER_POINT_CHANGE 17(0x11) (17)
0930 14:35:10814 :: 11, 00, 00, 00, cc, 5e, 00, 00, 13, 00, 00, 00, 00, a0, 00, 00, 00
0930 14:35:10814 :: RECV< HEADER_GC_ITEM_UPDATE 25(0x19) (38)
0930 14:35:10814 :: 19, 02, 61, 00, 01, 00, 00, 00, 00, 00, 00, 00, 00, 1d, 05, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00
0930 14:35:10815 :: RECV< HEADER_GC_PLAYER_POINT_CHANGE 17(0x11) (17)
0930 14:35:10815 :: 11, 00, 00, 00, cc, 5e, 00, 00, 12, 00, 00, 00, 00, 86, 01, 00, 00
0930 14:35:10815 :: RECV< HEADER_GC_PLAYER_POINT_CHANGE 17(0x11) (17)
0930 14:35:10815 :: 11, 00, 00, 00, cc, 5e, 00, 00, 14, 00, 00, 00, 00, b1, 00, 00, 00
0930 14:35:10815 :: RECV< HEADER_GC_PLAYER_POINT_CHANGE 17(0x11) (17)
0930 14:35:10815 :: 11, 00, 00, 00, cc, 5e, 00, 00, 10, 00, 00, 00, 00, b1, 00, 00, 00
0930 14:35:10815 :: RECV< HEADER_GC_PLAYER_POINT_CHANGE 17(0x11) (17)
0930 14:35:10816 :: 11, 00, 00, 00, cc, 5e, 00, 00, 14, 00, 00, 00, 00, c3, 00, 00, 00
0930 14:35:10818 :: RECV< HEADER_GC_PLAYER_POINT_CHANGE 17(0x11) (17)
0930 14:35:10818 :: 11, 00, 00, 00, cc, 5e, 00, 00, 16, 00, 00, 00, 00, f0, 00, 00, 00
0930 14:35:10818 :: RECV< HEADER_GC_PLAYER_POINT_CHANGE 17(0x11) (17)
0930 14:35:10818 :: 11, 00, 00, 00, cc, 5e, 00, 00, 17, 00, 00, 00, 00, 96, 00, 00, 00
0930 14:35:10819 :: RECV< HEADER_GC_ITEM_SET 21(0x15) (51)
0930 14:35:10819 :: 15, 01, 15, 00, dc, 15, 01, 00, 01, 00, 24, 00, 00, 80, a1, 01, 00, 00, 00, 00, 00, 00, 3a, 00, 00, 00, 60, 54, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00
0930 14:35:10819 :: RECV< HEADER_GC_ITEM_SET 21(0x15) (51)
0930 14:35:10820 :: 15, 01, 13, 00, d9, 15, 01, 00, 01, 04, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00
0930 14:35:10820 :: RECV< HEADER_GC_ITEM_SET 21(0x15) (51)
0930 14:35:10820 :: 15, 01, 0b, 00, 16, 1c, 01, 00, 01, 04, 20, 00, 00, 00, 00, 00, 00, 00, 01, 00, 00, 00, 88, 5f, 06, 00, 80, 96, 98, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00
0930 14:35:10821 :: RECV< HEADER_GC_ITEM_SET 21(0x15) (51)
0930 14:35:10821 :: 15, 01, 60, 00, d5, 42, 00, 00, 01, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 08, 14, 00, 19, 0a, 00, 29, 05, 00, 16, 14, 00, 15, 14, 00, 00, 00, 00, 00, 00, 00
0930 14:35:10821 :: RECV< HEADER_GC_PLAYER_POINT_CHANGE 17(0x11) (17)
0930 14:35:10821 :: 11, 00, 00, 00, cc, 5e, 00, 00, 12, 00, 00, 00, 00, 9e, 01, 00, 00
0930 14:35:10822 :: RECV< HEADER_GC_PLAYER_POINT_CHANGE 17(0x11) (17)
0930 14:35:10822 :: 11, 00, 00, 00, cc, 5e, 00, 00, 14, 00, 00, 00, 00, b1, 00, 00, 00
0930 14:35:10822 :: RECV< HEADER_GC_PLAYER_POINT_CHANGE 17(0x11) (17)
0930 14:35:10822 :: 11, 00, 00, 00, cc, 5e, 00, 00, 10, 00, 00, 00, 00, b1, 00, 00, 00
0930 14:35:10822 :: RECV< HEADER_GC_PLAYER_POINT_CHANGE 17(0x11) (17)
0930 14:35:10823 :: 11, 00, 00, 00, cc, 5e, 00, 00, 14, 00, 00, 00, 00, c3, 00, 00, 00
0930 14:35:10823 :: RECV< HEADER_GC_PLAYER_POINT_CHANGE 17(0x11) (17)
0930 14:35:10823 :: 11, 00, 00, 00, cc, 5e, 00, 00, 16, 00, 00, 00, 00, f0, 00, 00, 00
0930 14:35:10823 :: RECV< HEADER_GC_PLAYER_POINT_CHANGE 17(0x11) (17)
0930 14:35:10823 :: 11, 00, 00, 00, cc, 5e, 00, 00, 17, 00, 00, 00, 00, 96, 00, 00, 00
0930 14:35:10824 :: RECV< HEADER_GC_PLAYER_POINT_CHANGE 17(0x11) (17)
0930 14:35:10824 :: 11, 00, 00, 00, cc, 5e, 00, 00, 0c, 00, 00, 00, 00, 66, 00, 00, 00
0930 14:35:10824 :: RECV< HEADER_GC_PLAYER_POINT_CHANGE 17(0x11) (17)
0930 14:35:10824 :: 11, 00, 00, 00, cc, 5e, 00, 00, 06, 00, 00, 00, 00, ce, 18, 00, 00
0930 14:35:10824 :: RECV< HEADER_GC_PLAYER_POINT_CHANGE 17(0x11) (17)
0930 14:35:10824 :: 11, 00, 00, 00, cc, 5e, 00, 00, 13, 00, 00, 00, 00, b4, 00, 00, 00
0930 14:35:10826 :: RECV< HEADER_GC_PLAYER_POINT_CHANGE 17(0x11) (17)
0930 14:35:10826 :: 11, 00, 00, 00, cc, 5e, 00, 00, 41, 00, 00, 00, 00, 0a, 00, 00, 00
0930 14:35:10826 :: RECV< HEADER_GC_PLAYER_POINT_CHANGE 17(0x11) (17)
0930 14:35:10826 :: 11, 00, 00, 00, cc, 5e, 00, 00, 51, 00, 00, 00, 00, 05, 00, 00, 00
0930 14:35:10826 :: RECV< HEADER_GC_PLAYER_POINT_CHANGE 17(0x11) (17)
0930 14:35:10827 :: 11, 00, 00, 00, cc, 5e, 00, 00, 30, 00, 00, 00, 00, 14, 00, 00, 00
0930 14:35:10827 :: RECV< HEADER_GC_PLAYER_POINT_CHANGE 17(0x11) (17)
0930 14:35:10827 :: 11, 00, 00, 00, cc, 5e, 00, 00, 2f, 00, 00, 00, 00, 14, 00, 00, 00
0930 14:35:10827 :: RECV< HEADER_GC_PLAYER_POINT_CHANGE 17(0x11) (17)
0930 14:35:10827 :: 11, 00, 00, 00, cc, 5e, 00, 00, 12, 00, 00, 00, 00, 9e, 01, 00, 00
0930 14:35:10829 :: RECV< HEADER_GC_PLAYER_POINT_CHANGE 17(0x11) (17)
0930 14:35:10829 :: 11, 00, 00, 00, cc, 5e, 00, 00, 14, 00, 00, 00, 00, b1, 00, 00, 00
0930 14:35:10829 :: RECV< HEADER_GC_PLAYER_POINT_CHANGE 17(0x11) (17)
0930 14:35:10829 :: 11, 00, 00, 00, cc, 5e, 00, 00, 10, 00, 00, 00, 00, b1, 00, 00, 00
0930 14:35:10830 :: RECV< HEADER_GC_PLAYER_POINT_CHANGE 17(0x11) (17)
0930 14:35:10830 :: 11, 00, 00, 00, cc, 5e, 00, 00, 14, 00, 00, 00, 00, c3, 00, 00, 00
0930 14:35:10830 :: RECV< HEADER_GC_PLAYER_POINT_CHANGE 17(0x11) (17)
0930 14:35:10830 :: 11, 00, 00, 00, cc, 5e, 00, 00, 16, 00, 00, 00, 00, f0, 00, 00, 00
0930 14:35:10831 :: RECV< HEADER_GC_PLAYER_POINT_CHANGE 17(0x11) (17)
0930 14:35:10831 :: 11, 00, 00, 00, cc, 5e, 00, 00, 17, 00, 00, 00, 00, 96, 00, 00, 00
0930 14:35:10831 :: RECV< HEADER_GC_ITEM_SET 21(0x15) (51)
0930 14:35:10831 :: 15, 01, 0e, 00, db, 15, 01, 00, 01, 00, 24, 00, 00, 80, a1, 01, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 30, 2a, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00
0930 14:35:10831 :: RECV< HEADER_GC_ITEM_SET 21(0x15) (51)
0930 14:35:10831 :: 15, 01, 2e, 00, 02, 2b, 00, 00, 01, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00
0930 14:35:10832 :: RECV< HEADER_GC_ITEM_SET 21(0x15) (51)
0930 14:35:10832 :: 15, 01, 2d, 00, f8, 2a, 00, 00, 01, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00
0930 14:35:10832 :: RECV< HEADER_GC_ITEM_SET 21(0x15) (51)
0930 14:35:10833 :: 15, 01, 2c, 00, 9c, 5f, 01, 00, a5, 04, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00
0930 14:35:10833 :: RECV< HEADER_GC_ITEM_SET 21(0x15) (51)
0930 14:35:10833 :: 15, 01, 5a, 00, 29, 4e, 00, 00, 01, 01, 00, 00, 00, 38, 01, 00, 00, 00, 01, 00, 00, 00, 01, 00, 00, 00, 01, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00
0930 14:35:10834 :: RECV< HEADER_GC_PLAYER_POINT_CHANGE 17(0x11) (17)
0930 14:35:10834 :: 11, 00, 00, 00, cc, 5e, 00, 00, 13, 00, 00, 00, 00, b4, 00, 00, 00
0930 14:35:10834 :: RECV< HEADER_GC_PLAYER_POINT_CHANGE 17(0x11) (17)
0930 14:35:10834 :: 11, 00, 00, 00, cc, 5e, 00, 00, 4d, 00, 00, 00, 00, 19, 00, 00, 00
0930 14:35:10834 :: RECV< HEADER_GC_PLAYER_POINT_CHANGE 17(0x11) (17)
0930 14:35:10835 :: 11, 00, 00, 00, cc, 5e, 00, 00, 06, 00, 00, 00, 00, a4, 1a, 00, 00
0930 14:35:10835 :: RECV< HEADER_GC_PLAYER_POINT_CHANGE 17(0x11) (17)
0930 14:35:10835 :: 11, 00, 00, 00, cc, 5e, 00, 00, 77, 00, 00, 00, 00, 0a, 00, 00, 00
0930 14:35:10835 :: RECV< HEADER_GC_PLAYER_POINT_CHANGE 17(0x11) (17)
0930 14:35:10835 :: 11, 00, 00, 00, cc, 5e, 00, 00, 12, 00, 00, 00, 00, 9e, 01, 00, 00
0930 14:35:10835 :: RECV< HEADER_GC_PLAYER_POINT_CHANGE 17(0x11) (17)
0930 14:35:10837 :: 11, 00, 00, 00, cc, 5e, 00, 00, 14, 00, 00, 00, 00, f1, 01, 00, 00
0930 14:35:10838 :: RECV< HEADER_GC_PLAYER_POINT_CHANGE 17(0x11) (17)
0930 14:35:10838 :: 11, 00, 00, 00, cc, 5e, 00, 00, 10, 00, 00, 00, 00, f1, 01, 00, 00
0930 14:35:10838 :: RECV< HEADER_GC_PLAYER_POINT_CHANGE 17(0x11) (17)
0930 14:35:10838 :: 11, 00, 00, 00, cc, 5e, 00, 00, 14, 00, 00, 00, 00, 03, 02, 00, 00
0930 14:35:10838 :: RECV< HEADER_GC_PLAYER_POINT_CHANGE 17(0x11) (17)
0930 14:35:10839 :: 11, 00, 00, 00, cc, 5e, 00, 00, 16, 00, 00, 00, 00, f0, 00, 00, 00
0930 14:35:10839 :: RECV< HEADER_GC_PLAYER_POINT_CHANGE 17(0x11) (17)
0930 14:35:10839 :: 11, 00, 00, 00, cc, 5e, 00, 00, 17, 00, 00, 00, 00, 36, 01, 00, 00
0930 14:35:10839 :: RECV< HEADER_GC_ITEM_SET 21(0x15) (51)
0930 14:35:10839 :: 15, 01, 59, 00, 02, 00, 00, 00, 01, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00
0930 14:35:10839 :: RECV< HEADER_GC_ITEM_SET 21(0x15) (51)
0930 14:35:10841 :: 15, 01, 9e, 00, 7e, 69, 00, 00, c8, 14, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00
0930 14:35:10841 :: RECV< HEADER_GC_ITEM_SET 21(0x15) (51)
0930 14:35:10841 :: 15, 01, 0c, 00, ac, 15, 01, 00, c8, 04, 20, 00, 00, 80, 21, 01, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00
0930 14:35:10841 :: RECV< HEADER_GC_ITEM_SET 21(0x15) (51)
0930 14:35:10842 :: 15, 01, 0d, 00, ad, 15, 01, 00, b4, 04, 20, 00, 00, 80, 21, 01, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00
0930 14:35:10842 :: RECV< HEADER_GC_ITEM_SET 21(0x15) (51)
0930 14:35:10842 :: 15, 01, 04, 00, 17, 01, 00, 00, 01, 01, 00, 00, 00, 20, 01, 00, 00, 00, 01, 00, 00, 00, 01, 00, 00, 00, 01, 00, 00, 00, 0f, 02, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00
0930 14:35:10843 :: RECV< HEADER_GC_ITEM_SET 21(0x15) (51)
0930 14:35:10843 :: 15, 01, 9d, 00, 7e, 69, 00, 00, c8, 14, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00
0930 14:35:10843 :: RECV< HEADER_GC_ITEM_SET 21(0x15) (51)
0930 14:35:10843 :: 15, 01, 0a, 00, 1a, 1c, 01, 00, 01, 04, 20, 00, 00, 00, 00, 00, 00, 00, 01, 00, 00, 00, fd, 7a, 02, 00, 40, 42, 0f, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00
0930 14:35:10844 :: RECV< HEADER_GC_ITEM_SET 21(0x15) (51)
0930 14:35:10844 :: 15, 01, 64, 00, f9, 32, 00, 00, 01, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 03, 0c, 00, 1b, 0f, 00, 27, 0a, 00, 30, 01, 00, 31, 01, 00, 00, 00, 00, 00, 00, 00
0930 14:35:10844 :: RECV< HEADER_GC_PLAYER_POINT_CHANGE 17(0x11) (17)
0930 14:35:10844 :: 11, 00, 00, 00, cc, 5e, 00, 00, 13, 00, 00, 00, 00, aa, 00, 00, 00
0930 14:35:10845 :: RECV< HEADER_GC_PLAYER_POINT_CHANGE 17(0x11) (17)
0930 14:35:10845 :: 11, 00, 00, 00, cc, 5e, 00, 00, 12, 00, 00, 00, 00, 9e, 01, 00, 00
0930 14:35:10845 :: RECV< HEADER_GC_PLAYER_POINT_CHANGE 17(0x11) (17)
0930 14:35:10845 :: 11, 00, 00, 00, cc, 5e, 00, 00, 14, 00, 00, 00, 00, 5b, 02, 00, 00
0930 14:35:10845 :: RECV< HEADER_GC_PLAYER_POINT_CHANGE 17(0x11) (17)
0930 14:35:10845 :: 11, 00, 00, 00, cc, 5e, 00, 00, 10, 00, 00, 00, 00, 5b, 02, 00, 00
0930 14:35:10845 :: RECV< HEADER_GC_PLAYER_POINT_CHANGE 17(0x11) (17)
0930 14:35:10847 :: 11, 00, 00, 00, cc, 5e, 00, 00, 14, 00, 00, 00, 00, 70, 02, 00, 00
0930 14:35:10848 :: RECV< HEADER_GC_PLAYER_POINT_CHANGE 17(0x11) (17)
0930 14:35:10848 :: 11, 00, 00, 00, cc, 5e, 00, 00, 16, 00, 00, 00, 00, f0, 00, 00, 00
0930 14:35:10848 :: RECV< HEADER_GC_PLAYER_POINT_CHANGE 17(0x11) (17)
0930 14:35:10848 :: 11, 00, 00, 00, cc, 5e, 00, 00, 17, 00, 00, 00, 00, 6a, 01, 00, 00
0930 14:35:10848 :: RECV< HEADER_GC_PLAYER_POINT_CHANGE 17(0x11) (17)
0930 14:35:10848 :: 11, 00, 00, 00, cc, 5e, 00, 00, 0d, 00, 00, 00, 00, 66, 00, 00, 00
0930 14:35:10849 :: RECV< HEADER_GC_PLAYER_POINT_CHANGE 17(0x11) (17)
0930 14:35:10849 :: 11, 00, 00, 00, cc, 5e, 00, 00, 06, 00, 00, 00, 00, 84, 1c, 00, 00
0930 14:35:10849 :: RECV< HEADER_GC_PLAYER_POINT_CHANGE 17(0x11) (17)
0930 14:35:10849 :: 11, 00, 00, 00, cc, 5e, 00, 00, 0a, 00, 00, 00, 00, 1e, 05, 00, 00
0930 14:35:10850 :: RECV< HEADER_GC_PLAYER_POINT_CHANGE 17(0x11) (17)
0930 14:35:10850 :: 11, 00, 00, 00, cc, 5e, 00, 00, 43, 00, 00, 00, 00, 0f, 00, 00, 00
0930 14:35:10850 :: RECV< HEADER_GC_PLAYER_POINT_CHANGE 17(0x11) (17)
0930 14:35:10850 :: 11, 00, 00, 00, cc, 5e, 00, 00, 4f, 00, 00, 00, 00, 0a, 00, 00, 00
0930 14:35:10850 :: RECV< HEADER_GC_PLAYER_POINT_CHANGE 17(0x11) (17)
0930 14:35:10851 :: 11, 00, 00, 00, cc, 5e, 00, 00, 58, 00, 00, 00, 00, 01, 00, 00, 00
0930 14:35:10851 :: RECV< HEADER_GC_PLAYER_POINT_CHANGE 17(0x11) (17)
0930 14:35:10851 :: 11, 00, 00, 00, cc, 5e, 00, 00, 59, 00, 00, 00, 00, 01, 00, 00, 00
0930 14:35:10851 :: RECV< HEADER_GC_PLAYER_POINT_CHANGE 17(0x11) (17)
0930 14:35:10852 :: 11, 00, 00, 00, cc, 5e, 00, 00, 12, 00, 00, 00, 00, 9e, 01, 00, 00
0930 14:35:10852 :: RECV< HEADER_GC_PLAYER_POINT_CHANGE 17(0x11) (17)
0930 14:35:10852 :: 11, 00, 00, 00, cc, 5e, 00, 00, 14, 00, 00, 00, 00, 5b, 02, 00, 00
0930 14:35:10852 :: RECV< HEADER_GC_PLAYER_POINT_CHANGE 17(0x11) (17)
0930 14:35:10853 :: 11, 00, 00, 00, cc, 5e, 00, 00, 10, 00, 00, 00, 00, 5b, 02, 00, 00
0930 14:35:10853 :: RECV< HEADER_GC_PLAYER_POINT_CHANGE 17(0x11) (17)
0930 14:35:10853 :: 11, 00, 00, 00, cc, 5e, 00, 00, 14, 00, 00, 00, 00, 70, 02, 00, 00
0930 14:35:10853 :: RECV< HEADER_GC_PLAYER_POINT_CHANGE 17(0x11) (17)
0930 14:35:10853 :: 11, 00, 00, 00, cc, 5e, 00, 00, 16, 00, 00, 00, 00, f0, 00, 00, 00
0930 14:35:10855 :: RECV< HEADER_GC_PLAYER_POINT_CHANGE 17(0x11) (17)
0930 14:35:10855 :: 11, 00, 00, 00, cc, 5e, 00, 00, 17, 00, 00, 00, 00, 6a, 01, 00, 00
0930 14:35:10855 :: RECV< HEADER_GC_ITEM_SET 21(0x15) (51)
0930 14:35:10856 :: 15, 01, 99, 00, 7b, 69, 00, 00, c8, 14, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00
0930 14:35:10856 :: RECV< HEADER_GC_ITEM_SET 21(0x15) (51)
0930 14:35:10856 :: 15, 01, 02, 00, d5, 01, 00, 00, 01, 01, 00, 00, 00, 20, 01, 00, 00, 00, 01, 00, 00, 00, 01, 00, 00, 00, 01, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00
0930 14:35:10856 :: RECV< HEADER_GC_ITEM_SET 21(0x15) (51)
0930 14:35:10856 :: 15, 01, 5c, 00, 55, 3b, 00, 00, 01, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 01, d0, 07, 02, 50, 00, 08, 08, 00, 07, 08, 00, 0f, 0a, 00, 00, 00, 00, 00, 00, 00
0930 14:35:10858 :: RECV< HEADER_GC_PLAYER_POINT_CHANGE 17(0x11) (17)
0930 14:35:10858 :: 11, 00, 00, 00, cc, 5e, 00, 00, 13, 00, 00, 00, 00, c3, 00, 00, 00
0930 14:35:10859 :: RECV< HEADER_GC_PLAYER_POINT_CHANGE 17(0x11) (17)
0930 14:35:10859 :: 11, 00, 00, 00, cc, 5e, 00, 00, 44, 00, 00, 00, 00, 0a, 00, 00, 00
0930 14:35:10859 :: RECV< HEADER_GC_PLAYER_POINT_CHANGE 17(0x11) (17)
0930 14:35:10859 :: 11, 00, 00, 00, cc, 5e, 00, 00, 06, 00, 00, 00, 00, 54, 24, 00, 00
0930 14:35:10859 :: RECV< HEADER_GC_PLAYER_POINT_CHANGE 17(0x11) (17)
0930 14:35:10860 :: 11, 00, 00, 00, cc, 5e, 00, 00, 08, 00, 00, 00, 00, 44, 02, 00, 00
0930 14:35:10860 :: RECV< HEADER_GC_PLAYER_POINT_CHANGE 17(0x11) (17)
0930 14:35:10860 :: 11, 00, 00, 00, cc, 5e, 00, 00, 13, 00, 00, 00, 00, cb, 00, 00, 00
0930 14:35:10861 :: RECV< HEADER_GC_PLAYER_POINT_CHANGE 17(0x11) (17)
0930 14:35:10861 :: 11, 00, 00, 00, cc, 5e, 00, 00, 11, 00, 00, 00, 00, 6c, 00, 00, 00
0930 14:35:10861 :: RECV< HEADER_GC_PLAYER_POINT_CHANGE 17(0x11) (17)
0930 14:35:10861 :: 11, 00, 00, 00, cc, 5e, 00, 00, 28, 00, 00, 00, 00, 0a, 00, 00, 00
0930 14:35:10861 :: RECV< HEADER_GC_PLAYER_POINT_CHANGE 17(0x11) (17)
0930 14:35:10862 :: 11, 00, 00, 00, cc, 5e, 00, 00, 12, 00, 00, 00, 00, 9e, 01, 00, 00
0930 14:35:10862 :: RECV< HEADER_GC_PLAYER_POINT_CHANGE 17(0x11) (17)
0930 14:35:10862 :: 11, 00, 00, 00, cc, 5e, 00, 00, 14, 00, 00, 00, 00, 60, 02, 00, 00
0930 14:35:10862 :: RECV< HEADER_GC_PLAYER_POINT_CHANGE 17(0x11) (17)
0930 14:35:10863 :: 11, 00, 00, 00, cc, 5e, 00, 00, 10, 00, 00, 00, 00, 60, 02, 00, 00
0930 14:35:10863 :: RECV< HEADER_GC_PLAYER_POINT_CHANGE 17(0x11) (17)
0930 14:35:10863 :: 11, 00, 00, 00, cc, 5e, 00, 00, 14, 00, 00, 00, 00, 75, 02, 00, 00
0930 14:35:10863 :: RECV< HEADER_GC_PLAYER_POINT_CHANGE 17(0x11) (17)
0930 14:35:10863 :: 11, 00, 00, 00, cc, 5e, 00, 00, 16, 00, 00, 00, 00, f0, 00, 00, 00
0930 14:35:10863 :: RECV< HEADER_GC_PLAYER_POINT_CHANGE 17(0x11) (17)
0930 14:35:10864 :: 11, 00, 00, 00, cc, 5e, 00, 00, 17, 00, 00, 00, 00, 6d, 01, 00, 00
0930 14:35:10864 :: RECV< HEADER_GC_ITEM_SET 21(0x15) (51)
0930 14:35:10864 :: 15, 01, 98, 00, 7b, 69, 00, 00, c8, 14, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00
0930 14:35:10864 :: RECV< HEADER_GC_ITEM_SET 21(0x15) (51)
0930 14:35:10865 :: 15, 01, 00, 00, 95, 00, 00, 00, 01, 01, 00, 00, 00, 20, 00, 00, 00, 00, 01, 00, 00, 00, 01, 00, 00, 00, 01, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00
0930 14:35:10865 :: RECV< HEADER_GC_ITEM_SET 21(0x15) (51)
0930 14:35:10865 :: 15, 01, 03, 00, f3, 2e, 00, 00, 01, 01, 00, 00, 00, 38, 01, 00, 00, 00, 1b, 6f, 00, 00, 01, 00, 00, 00, 01, 00, 00, 00, 01, d0, 07, 24, 0a, 00, 26, 0f, 00, 22, 0f, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00
0930 14:35:10865 :: RECV< HEADER_GC_ITEM_SET 21(0x15) (51)
0930 14:35:10865 :: 15, 05, 00, 00, 96, ae, 01, 00, 01, 00, 00, 00, 00, 00, 01, 02, 00, 01, 80, 51, 01, 00, 00, 00, 00, 00, 00, 00, 00, 00, 04, 01, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00
0930 14:35:10867 :: RECV< HEADER_GC_ITEM_SET 21(0x15) (51)
0930 14:35:10868 :: 15, 01, 2a, 00, 9a, 5f, 01, 00, af, 04, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00
0930 14:35:10868 :: RECV< HEADER_GC_ITEM_SET 21(0x15) (51)
0930 14:35:10869 :: 15, 01, 2f, 00, 0c, 2b, 00, 00, 01, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00
0930 14:35:10869 :: RECV< HEADER_GC_ITEM_SET 21(0x15) (51)
0930 14:35:10869 :: 15, 01, 71, 00, a9, 46, 00, 00, 01, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00
0930 14:35:10869 :: RECV< HEADER_GC_PLAYER_POINT_CHANGE 17(0x11) (17)
0930 14:35:10869 :: 11, 00, 00, 00, cc, 5e, 00, 00, 35, 00, 00, 00, 00, 05, 00, 00, 00
0930 14:35:10869 :: RECV< HEADER_GC_PLAYER_POINT_CHANGE 17(0x11) (17)
0930 14:35:10870 :: 11, 00, 00, 00, cc, 5e, 00, 00, 12, 00, 00, 00, 00, 9e, 01, 00, 00
0930 14:35:10870 :: RECV< HEADER_GC_PLAYER_POINT_CHANGE 17(0x11) (17)
0930 14:35:10871 :: 11, 00, 00, 00, cc, 5e, 00, 00, 14, 00, 00, 00, 00, 60, 02, 00, 00
0930 14:35:10871 :: RECV< HEADER_GC_PLAYER_POINT_CHANGE 17(0x11) (17)
0930 14:35:10871 :: 11, 00, 00, 00, cc, 5e, 00, 00, 10, 00, 00, 00, 00, 60, 02, 00, 00
0930 14:35:10871 :: RECV< HEADER_GC_PLAYER_POINT_CHANGE 17(0x11) (17)
0930 14:35:10872 :: 11, 00, 00, 00, cc, 5e, 00, 00, 14, 00, 00, 00, 00, 75, 02, 00, 00
0930 14:35:10872 :: RECV< HEADER_GC_PLAYER_POINT_CHANGE 17(0x11) (17)
0930 14:35:10872 :: 11, 00, 00, 00, cc, 5e, 00, 00, 16, 00, 00, 00, 00, f0, 00, 00, 00
0930 14:35:10872 :: RECV< HEADER_GC_PLAYER_POINT_CHANGE 17(0x11) (17)
0930 14:35:10872 :: 11, 00, 00, 00, cc, 5e, 00, 00, 17, 00, 00, 00, 00, 6d, 01, 00, 00
0930 14:35:10873 :: RECV< HEADER_GC_ITEM_SET 21(0x15) (51)
0930 14:35:10873 :: 15, 01, 2b, 00, 9b, 5f, 01, 00, aa, 04, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00
0930 14:35:10873 :: RECV< HEADER_GC_ITEM_SET 21(0x15) (51)
0930 14:35:10873 :: 15, 01, 5d, 00, 1d, 37, 00, 00, 01, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 01, d0, 07, 02, 50, 00, 10, 0a, 00, 17, 0a, 00, 19, 0a, 00, 00, 00, 00, 00, 00, 00
0930 14:35:10874 :: RECV< HEADER_GC_PLAYER_POINT_CHANGE 17(0x11) (17)
0930 14:35:10874 :: 11, 00, 00, 00, cc, 5e, 00, 00, 11, 00, 00, 00, 00, 73, 00, 00, 00
0930 14:35:10874 :: RECV< HEADER_GC_PLAYER_POINT_CHANGE 17(0x11) (17)
0930 14:35:10874 :: 11, 00, 00, 00, cc, 5e, 00, 00, 57, 00, 00, 00, 00, 05, 00, 00, 00
0930 14:35:10874 :: RECV< HEADER_GC_PLAYER_POINT_CHANGE 17(0x11) (17)
0930 14:35:10875 :: 11, 00, 00, 00, cc, 5e, 00, 00, 06, 00, 00, 00, 00, 24, 2c, 00, 00
0930 14:35:10875 :: RECV< HEADER_GC_PLAYER_POINT_CHANGE 17(0x11) (17)
0930 14:35:10875 :: 11, 00, 00, 00, cc, 5e, 00, 00, 08, 00, 00, 00, 00, 94, 02, 00, 00
0930 14:35:10875 :: RECV< HEADER_GC_PLAYER_POINT_CHANGE 17(0x11) (17)
0930 14:35:10875 :: 11, 00, 00, 00, cc, 5e, 00, 00, 29, 00, 00, 00, 00, 0a, 00, 00, 00
0930 14:35:10876 :: RECV< HEADER_GC_PLAYER_POINT_CHANGE 17(0x11) (17)
0930 14:35:10877 :: 11, 00, 00, 00, cc, 5e, 00, 00, 3f, 00, 00, 00, 00, 0a, 00, 00, 00
0930 14:35:10877 :: RECV< HEADER_GC_PLAYER_POINT_CHANGE 17(0x11) (17)
0930 14:35:10877 :: 11, 00, 00, 00, cc, 5e, 00, 00, 41, 00, 00, 00, 00, 14, 00, 00, 00
0930 14:35:10877 :: RECV< HEADER_GC_PLAYER_POINT_CHANGE 17(0x11) (17)
0930 14:35:10877 :: 11, 00, 00, 00, cc, 5e, 00, 00, 12, 00, 00, 00, 00, 9e, 01, 00, 00
0930 14:35:10878 :: RECV< HEADER_GC_PLAYER_POINT_CHANGE 17(0x11) (17)
0930 14:35:10878 :: 11, 00, 00, 00, cc, 5e, 00, 00, 14, 00, 00, 00, 00, 60, 02, 00, 00
0930 14:35:10878 :: RECV< HEADER_GC_PLAYER_POINT_CHANGE 17(0x11) (17)
0930 14:35:10878 :: 11, 00, 00, 00, cc, 5e, 00, 00, 10, 00, 00, 00, 00, 60, 02, 00, 00
0930 14:35:10878 :: RECV< HEADER_GC_PLAYER_POINT_CHANGE 17(0x11) (17)
0930 14:35:10879 :: 11, 00, 00, 00, cc, 5e, 00, 00, 14, 00, 00, 00, 00, 75, 02, 00, 00
0930 14:35:10879 :: RECV< HEADER_GC_PLAYER_POINT_CHANGE 17(0x11) (17)
0930 14:35:10879 :: 11, 00, 00, 00, cc, 5e, 00, 00, 16, 00, 00, 00, 00, f0, 00, 00, 00
0930 14:35:10879 :: RECV< HEADER_GC_PLAYER_POINT_CHANGE 17(0x11) (17)
0930 14:35:10880 :: 11, 00, 00, 00, cc, 5e, 00, 00, 17, 00, 00, 00, 00, 6d, 01, 00, 00
0930 14:35:10880 :: RECV< HEADER_GC_ITEM_SET 21(0x15) (51)
0930 14:35:10880 :: 15, 01, 30, 00, 16, 2b, 00, 00, 01, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00
0930 14:35:10881 :: RECV< HEADER_GC_ITEM_SET 21(0x15) (51)
0930 14:35:10881 :: 15, 01, 5b, 00, d9, 2f, 00, 00, 01, 00, 00, 00, 00, 38, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 07, 08, 00, 0a, 1e, 00, 0b, 1e, 00, 1c, 0f, 00, 18, 0a, 00, 00, 00, 00, 00, 00, 00
0930 14:35:10881 :: RECV< HEADER_GC_PLAYER_POINT_CHANGE 17(0x11) (17)
0930 14:35:10881 :: 11, 00, 00, 00, cc, 5e, 00, 00, 11, 00, 00, 00, 00, 7b, 00, 00, 00
0930 14:35:10882 :: RECV< HEADER_GC_PLAYER_POINT_CHANGE 17(0x11) (17)
0930 14:35:10882 :: 11, 00, 00, 00, cc, 5e, 00, 00, 20, 00, 00, 00, 00, 1e, 00, 00, 00
0930 14:35:10882 :: RECV< HEADER_GC_PLAYER_POINT_CHANGE 17(0x11) (17)
0930 14:35:10882 :: 11, 00, 00, 00, cc, 5e, 00, 00, 21, 00, 00, 00, 00, 1e, 00, 00, 00
0930 14:35:10883 :: RECV< HEADER_GC_PLAYER_POINT_CHANGE 17(0x11) (17)
0930 14:35:10883 :: 11, 00, 00, 00, cc, 5e, 00, 00, 44, 00, 00, 00, 00, 19, 00, 00, 00
0930 14:35:10883 :: RECV< HEADER_GC_PLAYER_POINT_CHANGE 17(0x11) (17)
0930 14:35:10883 :: 11, 00, 00, 00, cc, 5e, 00, 00, 40, 00, 00, 00, 00, 0a, 00, 00, 00
0930 14:35:10884 :: RECV< HEADER_GC_PLAYER_POINT_CHANGE 17(0x11) (17)
0930 14:35:10884 :: 11, 00, 00, 00, cc, 5e, 00, 00, 12, 00, 00, 00, 00, 9e, 01, 00, 00
0930 14:35:10884 :: RECV< HEADER_GC_PLAYER_POINT_CHANGE 17(0x11) (17)
0930 14:35:10885 :: 11, 00, 00, 00, cc, 5e, 00, 00, 14, 00, 00, 00, 00, af, 02, 00, 00
0930 14:35:10885 :: RECV< HEADER_GC_PLAYER_POINT_CHANGE 17(0x11) (17)
0930 14:35:10885 :: 11, 00, 00, 00, cc, 5e, 00, 00, 10, 00, 00, 00, 00, af, 02, 00, 00
0930 14:35:10885 :: RECV< HEADER_GC_PLAYER_POINT_CHANGE 17(0x11) (17)
0930 14:35:10886 :: 11, 00, 00, 00, cc, 5e, 00, 00, 14, 00, 00, 00, 00, c4, 02, 00, 00
0930 14:35:10886 :: RECV< HEADER_GC_PLAYER_POINT_CHANGE 17(0x11) (17)
0930 14:35:10886 :: 11, 00, 00, 00, cc, 5e, 00, 00, 16, 00, 00, 00, 00, f0, 00, 00, 00
0930 14:35:10887 :: RECV< HEADER_GC_PLAYER_POINT_CHANGE 17(0x11) (17)
0930 14:35:10887 :: 11, 00, 00, 00, cc, 5e, 00, 00, 17, 00, 00, 00, 00, 94, 01, 00, 00
0930 14:35:10887 :: RECV< HEADER_GC_ITEM_SET 21(0x15) (51)
0930 14:35:10887 :: 15, 01, 9c, 00, 7e, 69, 00, 00, c8, 14, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00
0930 14:35:10888 :: RECV< HEADER_GC_ITEM_SET 21(0x15) (51)
0930 14:35:10888 :: 15, 01, 28, 00, 85, c3, 00, 00, 01, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00
0930 14:35:10888 :: RECV< HEADER_GC_ITEM_SET 21(0x15) (51)
0930 14:35:10888 :: 15, 01, 01, 00, 23, 2c, 00, 00, 01, 01, 00, 00, 00, 38, 01, 00, 00, 00, 01, 00, 00, 00, 01, 00, 00, 00, 01, 00, 00, 00, 01, d0, 07, 09, 14, 00, 17, 0a, 00, 27, 0a, 00, 35, 32, 00, 00, 00, 00, 00, 00, 00
0930 14:35:10889 :: RECV< HEADER_GC_ITEM_SET 21(0x15) (51)
0930 14:35:10889 :: 15, 01, 0f, 00, c3, 2e, 00, 00, 01, 01, 00, 00, 00, b8, a1, 01, 00, 00, 1b, 6f, 00, 00, 01, 00, 00, 00, 01, 00, 00, 00, 01, dc, 05, 35, 0f, 00, 18, 03, 00, 24, 0a, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00
0930 14:35:10889 :: RECV< HEADER_GC_ITEM_SET 21(0x15) (51)
0930 14:35:10889 :: 15, 01, 5e, 00, 57, 0c, 00, 00, 01, 01, 00, 00, 00, 38, 01, 00, 00, 00, 01, 00, 00, 00, 01, 00, 00, 00, 01, 00, 00, 00, 09, 14, 00, 0f, 0a, 00, 10, 0a, 00, 16, 14, 00, 05, 0c, 00, 00, 00, 00, 00, 00, 00
0930 14:35:10891 :: RECV< HEADER_GC_PLAYER_POINT_CHANGE 17(0x11) (17)
0930 14:35:10891 :: 11, 00, 00, 00, cc, 5e, 00, 00, 11, 00, 00, 00, 00, 94, 00, 00, 00
0930 14:35:10891 :: RECV< HEADER_GC_PLAYER_POINT_CHANGE 17(0x11) (17)
0930 14:35:10891 :: 11, 00, 00, 00, cc, 5e, 00, 00, 2b, 00, 00, 00, 00, 0f, 00, 00, 00
0930 14:35:10891 :: RECV< HEADER_GC_PLAYER_POINT_CHANGE 17(0x11) (17)
0930 14:35:10892 :: 11, 00, 00, 00, cc, 5e, 00, 00, 15, 00, 00, 00, 00, 78, 00, 00, 00
0930 14:35:10892 :: RECV< HEADER_GC_PLAYER_POINT_CHANGE 17(0x11) (17)
0930 14:35:10892 :: 11, 00, 00, 00, cc, 5e, 00, 00, 28, 00, 00, 00, 00, 14, 00, 00, 00
0930 14:35:10892 :: RECV< HEADER_GC_PLAYER_POINT_CHANGE 17(0x11) (17)
0930 14:35:10892 :: 11, 00, 00, 00, cc, 5e, 00, 00, 29, 00, 00, 00, 00, 14, 00, 00, 00
0930 14:35:10893 :: RECV< HEADER_GC_PLAYER_POINT_CHANGE 17(0x11) (17)
0930 14:35:10893 :: 11, 00, 00, 00, cc, 5e, 00, 00, 30, 00, 00, 00, 00, 28, 00, 00, 00
0930 14:35:10893 :: RECV< HEADER_GC_PLAYER_POINT_CHANGE 17(0x11) (17)
0930 14:35:10893 :: 11, 00, 00, 00, cc, 5e, 00, 00, 12, 00, 00, 00, 00, b6, 01, 00, 00
0930 14:35:10893 :: RECV< HEADER_GC_PLAYER_POINT_CHANGE 17(0x11) (17)
0930 14:35:10894 :: 11, 00, 00, 00, cc, 5e, 00, 00, 14, 00, 00, 00, 00, af, 02, 00, 00
0930 14:35:10894 :: RECV< HEADER_GC_PLAYER_POINT_CHANGE 17(0x11) (17)
0930 14:35:10894 :: 11, 00, 00, 00, cc, 5e, 00, 00, 10, 00, 00, 00, 00, af, 02, 00, 00
0930 14:35:10894 :: RECV< HEADER_GC_PLAYER_POINT_CHANGE 17(0x11) (17)
0930 14:35:10895 :: 11, 00, 00, 00, cc, 5e, 00, 00, 14, 00, 00, 00, 00, c4, 02, 00, 00
0930 14:35:10895 :: RECV< HEADER_GC_PLAYER_POINT_CHANGE 17(0x11) (17)
0930 14:35:10895 :: 11, 00, 00, 00, cc, 5e, 00, 00, 16, 00, 00, 00, 00, f0, 00, 00, 00
0930 14:35:10896 :: RECV< HEADER_GC_PLAYER_POINT_CHANGE 17(0x11) (17)
0930 14:35:10896 :: 11, 00, 00, 00, cc, 5e, 00, 00, 17, 00, 00, 00, 00, 94, 01, 00, 00
0930 14:35:10896 :: RECV< HEADER_GC_PLAYER_POINT_CHANGE 17(0x11) (17)
0930 14:35:10896 :: 11, 00, 00, 00, cc, 5e, 00, 00, 0c, 00, 00, 00, 00, 72, 00, 00, 00
0930 14:35:10897 :: RECV< HEADER_GC_PLAYER_POINT_CHANGE 17(0x11) (17)
0930 14:35:10897 :: 11, 00, 00, 00, cc, 5e, 00, 00, 12, 00, 00, 00, 00, b6, 01, 00, 00
0930 14:35:10897 :: RECV< HEADER_GC_PLAYER_POINT_CHANGE 17(0x11) (17)
0930 14:35:10897 :: 11, 00, 00, 00, cc, 5e, 00, 00, 14, 00, 00, 00, 00, af, 02, 00, 00
0930 14:35:10898 :: RECV< HEADER_GC_PLAYER_POINT_CHANGE 17(0x11) (17)
0930 14:35:10898 :: 11, 00, 00, 00, cc, 5e, 00, 00, 10, 00, 00, 00, 00, af, 02, 00, 00
0930 14:35:10898 :: RECV< HEADER_GC_PLAYER_POINT_CHANGE 17(0x11) (17)
0930 14:35:10899 :: 11, 00, 00, 00, cc, 5e, 00, 00, 14, 00, 00, 00, 00, c4, 02, 00, 00
0930 14:35:10899 :: RECV< HEADER_GC_PLAYER_POINT_CHANGE 17(0x11) (17)
0930 14:35:10899 :: 11, 00, 00, 00, cc, 5e, 00, 00, 16, 00, 00, 00, 00, f0, 00, 00, 00
0930 14:35:10899 :: RECV< HEADER_GC_PLAYER_POINT_CHANGE 17(0x11) (17)
0930 14:35:10900 :: 11, 00, 00, 00, cc, 5e, 00, 00, 17, 00, 00, 00, 00, 94, 01, 00, 00
0930 14:35:10900 :: RECV< HEADER_GC_ITEM_SET 21(0x15) (51)
0930 14:35:10900 :: 15, 01, 5f, 00, ed, 3e, 00, 00, 01, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 01, d0, 07, 02, 50, 00, 0f, 0a, 00, 10, 0a, 00, 18, 0a, 00, 00, 00, 00, 00, 00, 00
0930 14:35:10900 :: RECV< HEADER_GC_PLAYER_POINT_CHANGE 17(0x11) (17)
0930 14:35:10901 :: 11, 00, 00, 00, cc, 5e, 00, 00, 15, 00, 00, 00, 00, 8e, 00, 00, 00
0930 14:35:10901 :: RECV< HEADER_GC_PLAYER_POINT_CHANGE 17(0x11) (17)
0930 14:35:10901 :: 11, 00, 00, 00, cc, 5e, 00, 00, 12, 00, 00, 00, 00, b6, 01, 00, 00
0930 14:35:10901 :: RECV< HEADER_GC_PLAYER_POINT_CHANGE 17(0x11) (17)
0930 14:35:10901 :: 11, 00, 00, 00, cc, 5e, 00, 00, 14, 00, 00, 00, 00, b2, 02, 00, 00
0930 14:35:10902 :: RECV< HEADER_GC_PLAYER_POINT_CHANGE 17(0x11) (17)
0930 14:35:10902 :: 11, 00, 00, 00, cc, 5e, 00, 00, 10, 00, 00, 00, 00, b2, 02, 00, 00
0930 14:35:10902 :: RECV< HEADER_GC_PLAYER_POINT_CHANGE 17(0x11) (17)
0930 14:35:10902 :: 11, 00, 00, 00, cc, 5e, 00, 00, 14, 00, 00, 00, 00, c8, 02, 00, 00
0930 14:35:10903 :: RECV< HEADER_GC_PLAYER_POINT_CHANGE 17(0x11) (17)
0930 14:35:10903 :: 11, 00, 00, 00, cc, 5e, 00, 00, 16, 00, 00, 00, 00, f0, 00, 00, 00
0930 14:35:10903 :: RECV< HEADER_GC_PLAYER_POINT_CHANGE 17(0x11) (17)
0930 14:35:10904 :: 11, 00, 00, 00, cc, 5e, 00, 00, 17, 00, 00, 00, 00, 95, 01, 00, 00
0930 14:35:10905 :: RECV< HEADER_GC_PLAYER_POINT_CHANGE 17(0x11) (17)
0930 14:35:10905 :: 11, 00, 00, 00, cc, 5e, 00, 00, 0d, 00, 00, 00, 00, 6a, 00, 00, 00
0930 14:35:10905 :: RECV< HEADER_GC_PLAYER_POINT_CHANGE 17(0x11) (17)
0930 14:35:10905 :: 11, 00, 00, 00, cc, 5e, 00, 00, 06, 00, 00, 00, 00, c4, 2c, 00, 00
0930 14:35:10906 :: RECV< HEADER_GC_PLAYER_POINT_CHANGE 17(0x11) (17)
0930 14:35:10906 :: 11, 00, 00, 00, cc, 5e, 00, 00, 0a, 00, 00, 00, 00, 32, 05, 00, 00
0930 14:35:10906 :: RECV< HEADER_GC_PLAYER_POINT_CHANGE 17(0x11) (17)
0930 14:35:10906 :: 11, 00, 00, 00, cc, 5e, 00, 00, 06, 00, 00, 00, 00, 94, 34, 00, 00
0930 14:35:10906 :: RECV< HEADER_GC_PLAYER_POINT_CHANGE 17(0x11) (17)
0930 14:35:10908 :: 11, 00, 00, 00, cc, 5e, 00, 00, 08, 00, 00, 00, 00, e4, 02, 00, 00
0930 14:35:10908 :: RECV< HEADER_GC_PLAYER_POINT_CHANGE 17(0x11) (17)
0930 14:35:10908 :: 11, 00, 00, 00, cc, 5e, 00, 00, 28, 00, 00, 00, 00, 1e, 00, 00, 00
0930 14:35:10908 :: RECV< HEADER_GC_PLAYER_POINT_CHANGE 17(0x11) (17)
0930 14:35:10908 :: 11, 00, 00, 00, cc, 5e, 00, 00, 29, 00, 00, 00, 00, 1e, 00, 00, 00
0930 14:35:10909 :: RECV< HEADER_GC_PLAYER_POINT_CHANGE 17(0x11) (17)
0930 14:35:10909 :: 11, 00, 00, 00, cc, 5e, 00, 00, 40, 00, 00, 00, 00, 14, 00, 00, 00
0930 14:35:10909 :: RECV< HEADER_GC_PLAYER_POINT_CHANGE 17(0x11) (17)
0930 14:35:10909 :: 11, 00, 00, 00, cc, 5e, 00, 00, 12, 00, 00, 00, 00, b6, 01, 00, 00
0930 14:35:10910 :: RECV< HEADER_GC_PLAYER_POINT_CHANGE 17(0x11) (17)
0930 14:35:10910 :: 11, 00, 00, 00, cc, 5e, 00, 00, 14, 00, 00, 00, 00, b2, 02, 00, 00
0930 14:35:10910 :: RECV< HEADER_GC_PLAYER_POINT_CHANGE 17(0x11) (17)
0930 14:35:10910 :: 11, 00, 00, 00, cc, 5e, 00, 00, 10, 00, 00, 00, 00, b2, 02, 00, 00
0930 14:35:10910 :: RECV< HEADER_GC_PLAYER_POINT_CHANGE 17(0x11) (17)
0930 14:35:10910 :: 11, 00, 00, 00, cc, 5e, 00, 00, 14, 00, 00, 00, 00, c8, 02, 00, 00
0930 14:35:10910 :: RECV< HEADER_GC_PLAYER_POINT_CHANGE 17(0x11) (17)
0930 14:35:10910 :: 11, 00, 00, 00, cc, 5e, 00, 00, 16, 00, 00, 00, 00, f0, 00, 00, 00
0930 14:35:10910 :: RECV< HEADER_GC_PLAYER_POINT_CHANGE 17(0x11) (17)
0930 14:35:10911 :: 11, 00, 00, 00, cc, 5e, 00, 00, 17, 00, 00, 00, 00, 95, 01, 00, 00
0930 14:35:10911 :: RECV< HEADER_GC_PLAYER_POINTS 16(0x10) (1021)
0930 14:35:10913 :: 0930 14:35:11047 :: CResourceManager::GetResourcePointer: File not exist d:\ymir work\terrainmaps\mtthunder\mtthunder_field01.dds
0930 14:35:11048 :: CResourceManager::GetResourcePointer: File not exist d:\ymir work\terrainmaps\mtthunder\mtthunder_field02.dds
0930 14:35:11049 :: CResourceManager::GetResourcePointer: File not exist d:\ymir work\terrainmaps\mtthunder\mtthunder_field03.dds
0930 14:35:11049 :: CResourceManager::GetResourcePointer: File not exist d:\ymir work\terrainmaps\mtthunder\mtthunder_field04.dds
0930 14:35:11050 :: CResourceManager::GetResourcePointer: File not exist d:\ymir work\terrainmaps\mtthunder\mtthunder_grass02.dds
0930 14:35:11050 :: CResourceManager::GetResourcePointer: File not exist d:\ymir work\terrainmaps\mtthunder\mtthunder_grass03.dds
0930 14:35:11050 :: CResourceManager::GetResourcePointer: File not exist d:\ymir work\terrainmaps\mtthunder\mtthunder_sand00.dds
0930 14:35:11051 :: CResourceManager::GetResourcePointer: File not exist d:\ymir work\terrainmaps\mtthunder\mtthunder_stone01.dds
0930 14:35:11051 :: CResourceManager::GetResourcePointer: File not exist d:\ymir work\terrainmaps\mtthunder\mtthunder_stone02.dds
0930 14:35:11051 :: CResourceManager::GetResourcePointer: File not exist d:\ymir work\terrainmaps\mtthunder\mtthunder_stone03.dds
0930 14:35:11123 :: CResourceManager::GetResourcePointer: File not exist metin2_map_Mt_Thunder\000004\shadowmap.dds
0930 14:35:11124 ::  CTerrain::LoadShadowTexture - ShadowTexture is Empty
0930 14:35:11124 :: CResourceManager::GetResourcePointer: File not exist metin2_map_Mt_Thunder\000004\minimap.dds
0930 14:35:11130 :: CResourceManager::GetResourcePointer: File not exist d:\ymir work\zone\devils_dragon_island\camp_redthief_gate.dds
0930 14:35:11135 :: CResourceManager::GetResourcePointer: File not exist d:\ymir work\zone\devils_dragon_island\thing_fire_stand_bowl_00.dds
0930 14:35:11136 :: CResourceManager::GetResourcePointer: File not exist d:/ymir work/zone/devils_dragon_island/thing_fire_stand_bowl_00.mdatr
0930 14:35:11225 :: CResourceManager::GetResourcePointer: File not exist d:/ymir work/zone/devils_dragon_island/camp/camp_redthief_fence_00.mdatr
0930 14:35:11227 :: CResourceManager::GetResourcePointer: File not exist d:/ymir work/zone/devils_dragon_island/camp/camp_redthief_gate_03.mdatr
0930 14:35:11229 :: CResourceManager::GetResourcePointer: File not exist d:/ymir work/zone/devils_dragon_island/camp/camp_redthief_fence_02.mdatr
0930 14:35:11241 :: CResourceManager::GetResourcePointer: File not exist D:\ymir work\zone\devils_dragon_island\camp_tent_woodhut_00.dds
0930 14:35:11309 :: CResourceManager::GetResourcePointer: File not exist d:\ymir work\zone\devils_dragon_island\camp_redthief_build_roof.dds
0930 14:35:11310 :: CResourceManager::GetResourcePointer: File not exist d:\ymir work\zone\devils_dragon_island\camp_redthief_flag.dds
0930 14:35:11339 :: CResourceManager::GetResourcePointer: File not exist metin2_map_Mt_Thunder\001004\shadowmap.dds
0930 14:35:11340 ::  CTerrain::LoadShadowTexture - ShadowTexture is Empty
0930 14:35:11340 :: CResourceManager::GetResourcePointer: File not exist metin2_map_Mt_Thunder\001004\minimap.dds
0930 14:35:11349 ::  CArea::LoadObject Property(3883176848) Load ERROR
0930 14:35:11349 ::  CArea::LoadObject Property(3883176848) Load ERROR
0930 14:35:11356 :: CResourceManager::GetResourcePointer: File not exist D:\ymir work\npc2\donkey\donkey_bag.dds
0930 14:35:11358 :: CResourceManager::GetResourcePointer: File not exist d:/ymir work/zone/devils_dragon_island/thing_bag_01.mdatr
0930 14:35:11374 :: CResourceManager::GetResourcePointer: File not exist d:/ymir work/zone/devils_dragon_island/camp/camp_redthief_deco_01.mdatr
0930 14:35:11377 :: CResourceManager::GetResourcePointer: File not exist d:/ymir work/zone/devils_dragon_island/camp/camp_woodhut_break01.mdatr
0930 14:35:11383 :: CResourceManager::GetResourcePointer: File not exist d:/ymir work/zone/devils_dragon_island/thing_bag_00.mdatr
0930 14:35:11432 :: CResourceManager::GetResourcePointer: File not exist D:\ymir work\zone\devils_dragon_island\cart_shop_d.dds
0930 14:35:11434 :: CResourceManager::GetResourcePointer: File not exist d:/ymir work/zone/devils_dragon_island/cart_shopbox01.mdatr
0930 14:35:11435 :: CResourceManager::GetResourcePointer: File not exist d:/ymir work/zone/devils_dragon_island/camp/camp_woodhut_break02.mdatr
0930 14:35:11437 :: CResourceManager::GetResourcePointer: File not exist d:\ymir work\zone\devils_dragon_island\thing_jar_cap00.dds
0930 14:35:11438 :: CResourceManager::GetResourcePointer: File not exist d:/ymir work/zone/devils_dragon_island/thing_jar_cap01.mdatr
0930 14:35:11448 :: CResourceManager::GetResourcePointer: File not exist D:\ymir work\zone\devils_dragon_island\thing_cagobox.dds
0930 14:35:11449 :: CResourceManager::GetResourcePointer: File not exist d:/ymir work/zone/devils_dragon_island/thing_cagobox_long00.mdatr
0930 14:35:11454 :: CResourceManager::GetResourcePointer: File not exist d:\ymir work\zone\devils_dragon_island\thing_campfire_stone.dds
0930 14:35:11455 :: CResourceManager::GetResourcePointer: File not exist d:/ymir work/zone/devils_dragon_island/thing_campfire_stone.mdatr
0930 14:35:11456 :: CResourceManager::GetResourcePointer: File not exist d:/ymir work/zone/devils_dragon_island/camp/camp_woodhut_hake00.mdatr
0930 14:35:11477 :: CResourceManager::GetResourcePointer: File not exist d:/ymir work/zone/devils_dragon_island/donkey_bag00.mdatr
0930 14:35:11482 :: CResourceManager::GetResourcePointer: File not exist d:/ymir work/zone/devils_dragon_island/thing_jar_hole.mdatr
0930 14:35:11486 :: CResourceManager::GetResourcePointer: File not exist d:/ymir work/zone/devils_dragon_island/camp/camp_redthief_fence_01.mdatr
0930 14:35:11547 :: CResourceManager::GetResourcePointer: File not exist d:/ymir work/zone/devils_dragon_island/camp/camp_redthief_deco_00.mdatr
0930 14:35:11554 :: CResourceManager::GetResourcePointer: File not exist d:/ymir work/zone/devils_dragon_island/cart_shopbox00.mdatr
0930 14:35:11629 :: CResourceManager::GetResourcePointer: File not exist metin2_map_Mt_Thunder\000005\shadowmap.dds
0930 14:35:11630 ::  CTerrain::LoadShadowTexture - ShadowTexture is Empty
0930 14:35:11630 :: CResourceManager::GetResourcePointer: File not exist metin2_map_Mt_Thunder\000005\minimap.dds
0930 14:35:11682 :: CResourceManager::GetResourcePointer: File not exist D:\ymir work\zone\devils_dragon_island\fortMS_fence.dds
0930 14:35:11683 :: CResourceManager::GetResourcePointer: File not exist d:/ymir work/zone/devils_dragon_island/fortms_fence_body02.mdatr
0930 14:35:11685 :: CResourceManager::GetResourcePointer: File not exist d:/ymir work/zone/devils_dragon_island/fortms_fence_pillar.mdatr
0930 14:35:11710 :: CResourceManager::GetResourcePointer: File not exist metin2_map_Mt_Thunder\001005\shadowmap.dds
0930 14:35:11710 ::  CTerrain::LoadShadowTexture - ShadowTexture is Empty
0930 14:35:11711 :: CResourceManager::GetResourcePointer: File not exist metin2_map_Mt_Thunder\001005\minimap.dds
0930 14:35:11716 :: CResourceManager::GetResourcePointer: File not exist D:\ymir work\environment\skybox\Thunder_f.dds
0930 14:35:11716 :: CResourceManager::GetResourcePointer: File not exist D:\ymir work\environment\skybox\Thunder_b.dds
0930 14:35:11717 :: CResourceManager::GetResourcePointer: File not exist D:\ymir work\environment\skybox\Thunder_l.dds
0930 14:35:11717 :: CResourceManager::GetResourcePointer: File not exist D:\ymir work\environment\skybox\Thunder_r.dds
0930 14:35:11717 :: CResourceManager::GetResourcePointer: File not exist D:\ymir work\environment\skybox\Thunder_t.dds
0930 14:35:11718 :: CResourceManager::GetResourcePointer: File not exist D:/Ymir Work/UI/metin2_map_mt_thunder_atlas.dds
0930 14:35:12269 :: CResourceManager::GetResourcePointer: File not exist d:/ymir work/guild/effect/star.jpg
0930 14:35:12280 :: CResourceManager::GetResourcePointer: File not exist D:\Ymir Work\pc\assassin\effect\16-bottom.jpg
0930 14:35:12290 :: CResourceManager::GetResourcePointer: File not exist D:\Ymir Work\pc\shaman\effect\jigam.jpg
0930 14:35:12291 :: CResourceManager::GetResourcePointer: File not exist D:\Ymir Work\pc\shaman\effect\w_ring.jpg
0930 14:35:12291 :: CResourceManager::GetResourcePointer: File not exist D:\Ymir Work\pc\shaman\effect\white_sphere.jpg
0930 14:35:12292 :: CResourceManager::GetResourcePointer: File not exist D:\Ymir Work\pc\shaman\effect\wind.jpg
0930 14:35:12292 :: CResourceManager::GetResourcePointer: File not exist D:\Ymir Work\pc\shaman\effect\W_star.jpg
0930 14:35:12292 :: CResourceManager::GetResourcePointer: File not exist D:\Ymir Work\pc\shaman\effect\jigam_ring.jpg
0930 14:35:12292 :: CResourceManager::GetResourcePointer: File not exist D:\Ymir Work\pc\shaman\effect\gyeokgong_triple_loop_2.jpg
0930 14:35:12292 :: CResourceManager::GetResourcePointer: File not exist D:\Ymir Work\pc\shaman\effect\noe_w_ring.jpg
0930 14:35:14944 :: CResourceManager::GetResourcePointer: File not exist d:/ymir work/ui/game/quest/slot_button_01.sub
0930 14:35:15286 :: SEND> HEADER_CG_ENTERGAME 10(0xA) (1)
0930 14:35:15286 :: 0a
0930 14:35:15286 :: SEND> 168 4294967208(0xFFFFFFA8) (1)
0930 14:35:15287 :: a8
0930 14:35:15305 :: RECV< HEADER_GC_GUILD 75(0x4B) (4)
0930 14:35:15305 :: 4b, aa, 00, 03
0930 14:35:15306 :: RECV< HEADER_GC_MAIN_CHARACTER 15(0xF) (1)
0930 14:35:15306 :: 0f
0930 14:35:15306 :: RECV< HEADER_GC_CHARACTER_ADD 1(0x1) (1)
0930 14:35:15306 :: 01
0930 14:35:15306 :: RECV< HEADER_GC_SKILL_LEVEL_NEW 76(0x4C) (10)
0930 14:35:15306 :: 4c, 65, 61, 64, 65, 72, 20, 00, 00, 0f
0930 14:35:15307 :: RECV< HEADER_GC_CHARACTER_DEL 2(0x2) (1)
0930 14:35:15307 :: 02
0930 14:35:15308 :: RECV< HEADER_GC_PARTY_INVITE 77(0x4D) (10)
0930 14:35:15308 :: 4d, 65, 6d, 62, 65, 72, 20, 00, 00, 00
0930 14:35:15308 :: RECV< HEADER_GC_CHARACTER_MOVE 3(0x3) (1)
0930 14:35:15308 :: 03
0930 14:35:15308 :: RECV< HEADER_GC_PARTY_INVITE 77(0x4D) (10)
0930 14:35:15309 :: 4d, 65, 6d, 62, 65, 72, 20, 00, 00, 00
0930 14:35:15309 :: RECV< HEADER_GC_CHAT 4(0x4) (1)
0930 14:35:15309 :: 04
0930 14:35:15309 :: RECV< HEADER_GC_PARTY_INVITE 77(0x4D) (10)
0930 14:35:15309 :: 4d, 65, 6d, 62, 65, 72, 20, 00, 00, 00
0930 14:35:15309 :: RECV< HEADER_GC_SYNC_POSITION 5(0x5) (1)
0930 14:35:15310 :: 05
0930 14:35:15310 :: RECV< HEADER_GC_PARTY_INVITE 77(0x4D) (10)
0930 14:35:15310 :: 4d, 65, 6d, 62, 65, 72, 20, 00, 00, 00
0930 14:35:15310 :: RECV< HEADER_GC_LOGIN_SUCCESS 6(0x6) (1)
0930 14:35:15310 :: 06
0930 14:35:15310 :: RECV< HEADER_GC_PARTY_INVITE 77(0x4D) (10)
0930 14:35:15311 :: 4d, 65, 6d, 62, 65, 72, 20, 00, 00, 00
0930 14:35:15311 :: RECV< HEADER_GC_LOGIN_FAILURE 7(0x7) (1)
0930 14:35:15311 :: 07
0930 14:35:15311 :: RECV< HEADER_GC_PARTY_INVITE 77(0x4D) (10)
0930 14:35:15311 :: 4d, 65, 6d, 62, 65, 72, 20, 00, 00, 00
0930 14:35:15312 :: RECV< HEADER_GC_PLAYER_CREATE_SUCCESS 8(0x8) (1)
0930 14:35:15312 :: 08
0930 14:35:15312 :: RECV< HEADER_GC_PARTY_INVITE 77(0x4D) (10)
0930 14:35:15312 :: 4d, 65, 6d, 62, 65, 72, 20, 00, 00, 00
0930 14:35:15312 :: RECV< HEADER_GC_PLAYER_CREATE_FAILURE 9(0x9) (1)
0930 14:35:15312 :: 09
0930 14:35:15313 :: RECV< HEADER_GC_PARTY_INVITE 77(0x4D) (10)
0930 14:35:15313 :: 4d, 65, 6d, 62, 65, 72, 20, 00, 00, 00
0930 14:35:15313 :: RECV< HEADER_GC_PLAYER_DELETE_SUCCESS 10(0xA) (1)
0930 14:35:15314 :: 0a
0930 14:35:15314 :: RECV< HEADER_GC_PARTY_INVITE 77(0x4D) (10)
0930 14:35:15314 :: 4d, 65, 6d, 62, 65, 72, 20, 00, 00, 00
0930 14:35:15314 :: RECV< HEADER_GC_PLAYER_DELETE_WRONG_SOCIAL_ID 11(0xB) (1)
0930 14:35:15314 :: 0b
0930 14:35:15315 :: RECV< HEADER_GC_PARTY_INVITE 77(0x4D) (10)
0930 14:35:15315 :: 4d, 65, 6d, 62, 65, 72, 20, 00, 00, 00
0930 14:35:15315 :: RECV< 12 12(0xC) (1)
0930 14:35:15315 :: 0c
0930 14:35:15315 :: RECV< HEADER_GC_PARTY_INVITE 77(0x4D) (10)
0930 14:35:15315 :: 4d, 65, 6d, 62, 65, 72, 20, 00, 00, 00
0930 14:35:15315 :: RECV< HEADER_GC_STUN 13(0xD) (1)
0930 14:35:15315 :: 0d
0930 14:35:15317 :: RECV< HEADER_GC_PARTY_INVITE 77(0x4D) (10)
0930 14:35:15318 :: 4d, 65, 6d, 62, 65, 72, 20, 00, 00, 00
0930 14:35:15319 :: RECV< HEADER_GC_DEAD 14(0xE) (1)
0930 14:35:15319 :: 0e
0930 14:35:15319 :: RECV< HEADER_GC_PARTY_INVITE 77(0x4D) (10)
0930 14:35:15319 :: 4d, 65, 6d, 62, 65, 72, 20, 00, 00, 00
0930 14:35:15319 :: RECV< HEADER_GC_MAIN_CHARACTER 15(0xF) (1)
0930 14:35:15319 :: 0f
0930 14:35:15319 :: RECV< HEADER_GC_PARTY_INVITE 77(0x4D) (10)
0930 14:35:15319 :: 4d, 65, 6d, 62, 65, 72, 20, 00, 00, 00
0930 14:35:15320 :: RECV< HEADER_GC_GUILD 75(0x4B) (4)
0930 14:35:15320 :: 4b, 27, 00, 08
0930 14:35:15320 :: RECV< HEADER_GC_CHARACTER_ADD 1(0x1) (35)
0930 14:35:15320 :: 01, 00, 46, 00, 01, 00, 00, 00, 01, 00, 00, 00, 00, 00, 00, 00, 14, 5b, 47, 4d, 2d, 54, 45, 41, 4d, 5d, 00, 00, 00, 00, 00, 00, 00, 00, 01
0930 14:35:15320 :: RECV< HEADER_GC_GUILD 75(0x4B) (4)
0930 14:35:15321 :: 4b, 2a, 00, 02
0930 14:35:15321 :: RECV< HEADER_GC_CHARACTER_ADD 1(0x1) (13)
0930 14:35:15321 :: 01, 00, 00, 00, 01, 00, 00, 69, 80, a8, 12, 01, 01
0930 14:35:15321 :: RECV< HEADER_GC_PARTY_LINK 91(0x5B) (25)
0930 14:35:15321 :: 5b, 53, 41, 5d, 41, 64, 6d, 69, 6e, 00, d3, a3, 34, 01, 00, 00, 80, 77, eb, 7a, 34, 01, 00, 00, 19
0930 14:35:15322 :: RECV< HEADER_GC_GUILD 75(0x4B) (4)
0930 14:35:15322 :: 4b, 08, 00, 00
0930 14:35:15322 :: RECV< HEADER_GC_CHARACTER_ADD 1(0x1) (4)
0930 14:35:15322 :: 01, 00, 00, 00
0930 14:35:15322 :: RECV< HEADER_GC_GUILD 75(0x4B) (4)
0930 14:35:15323 :: 4b, 16, 00, 0c
0930 14:35:15323 :: RECV< HEADER_GC_CHARACTER_UPDATE 19(0x13) (1)
0930 14:35:15323 :: 13
0930 14:35:15323 :: RECV< HEADER_GC_HANDSHAKE_OK 4294967292(0xFFFFFFFC) (2)
0930 14:35:15323 :: fc, 08
0930 14:35:15324 :: RECV< HEADER_GC_GUILD 75(0x4B) (4)
0930 14:35:15324 :: 4b, 14, 00, 10
0930 14:35:15324 :: RECV< HEADER_GC_CHARACTER_ADD 1(0x1) (4)
0930 14:35:15324 :: 01, 00, 00, 00
0930 14:35:15324 :: RECV< HEADER_GC_PARTY_LINK 91(0x5B) (12)
0930 14:35:15324 :: 5b, 47, 4d, 2d, 54, 45, 41, 4d, 5d, 00, 00, 00
0930 14:35:15324 :: RECV< HEADER_GC_CHARACTER_ADD 1(0x1) (35)
0930 14:35:15324 :: 01, cc, 5e, 00, 00, 00, 00, 00, 00, a4, 4f, 11, 00, 48, 3f, 19, 00, 00, 00, 00, 00, 06, 00, 00, c8, 94, 00, 01, 00, 00, 00, 00, 00, 00, 00
0930 14:35:15326 :: RECV< HEADER_GC_CHAR_ADDITIONAL_INFO 4294967176(0xFFFFFF88) (54)
0930 14:35:15326 :: 88, cc, 5e, 00, 00, 5b, 53, 41, 5d, 41, 64, 6d, 69, 6e, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 29, 4e, 57, 0c, 00, 00, 00, 00, 03, 01, 00, 00, 00, 69, 00, 00, 00, 96, 4a, 03, 00, 00, 00, 00
0930 14:35:15593 :: RECV< HEADER_GC_CHARACTER_ADD 1(0x1) (35)
0930 14:35:15594 :: 01, 2c, 5e, 00, 00, 00, 00, b4, 42, 84, 4c, 11, 00, 94, 43, 19, 00, 00, 00, 00, 00, 03, 76, 27, 64, 64, 00, 00, 00, 00, 00, 00, 00, 00, 00
0930 14:35:15596 :: RECV< HEADER_GC_CHARACTER_ADD 1(0x1) (35)
0930 14:35:15597 :: 01, e3, 58, 00, 00, 00, 80, 9e, 43, ea, 67, 11, 00, d4, 29, 19, 00, 00, 00, 00, 00, 00, e0, 0d, 6e, 6e, 00, 00, 00, 00, 00, 00, 00, 00, 00
0930 14:35:15627 :: CResourceManager::GetResourcePointer: File not exist D:\Ymir Work\monster2\redthief2_soldier2\redthief2_soldier2.dds
0930 14:35:15628 :: CResourceManager::GetResourcePointer: File not exist D:\Ymir Work\monster2\redthief2_soldier2\redthief2_soldier2_weapon.dds

 

 

Another thing would be portals redirecting the character to non-existing coordinates causing client crashes upon loading finish. Cape -> Thunder portal was the one I tried although there could be some more.

 

And once again I really appreciated the solution to the handshake issue! Thank you!

  • Nitro Booster

Dear members,
A suggestion. Instead of spamming the forum thread, you can create github issue. So it will be more organised.

King Regards.

Edited by Luigina
  • Metin2 Dev 1
  • Honorable Member
7 hours ago, Luigina said:

Dear members,
A suggestion. Instead of spamming the forum thread, you can create github issue. So it will be more organised.

King Regards.

Actually I don't mind them much, because it makes the topic hot. But it's appreciated if they also create an issue on github, so we know about the problems.

Edited by Distraught
  • Love 2

992404397646696589.png
Former C++ Developer at Gameloft on DML
Join my Discord: Distraught Labs

  • Honorable Member

[UPDATE] New PRs have been merged:

@ Amun:

  • Fixed a bug where the volume change would be ignored if the sound was fading
  • Added SoundEngine::GetMusicVolume
  • Removed volume factor
  • Removed unused SetListenerVelocity

rtw1x1:

  • Syncronise Wearable client - server

Edited by Distraught
  • Metin2 Dev 1
  • Love 1
  • Love 4

992404397646696589.png
Former C++ Developer at Gameloft on DML
Join my Discord: Distraught Labs

On 10/10/2025 at 2:10 PM, Distraught said:

[UPDATE] New PRs have been merged:

@ Amun:

  • Fixed a bug where the volume change would be ignored if the sound was fading
  • Added SoundEngine::GetMusicVolume
  • Removed volume factor
  • Removed unused SetListenerVelocity

rtw1x1:

  • Syncronise Wearable client - server

Hi, I tried to test the file but when I try to login it just says on "You will be connected to the server"

3 hours ago, maxpoint012 said:

Hi, I tried to test the file but when I try to login it just says on "You will be connected to the server"

Someone just shared the fix above, just read the topic carefully. Check here

Edited by tw1x1
On 8/28/2025 at 6:53 PM, Distraught said:

Actually, I mostly overcome that, because I put the 3 values for blending states & color operation into a 32bit integer (as 1 byte is enough for each) which I decode at rendering. I had to turn off lighting not to affect the vertex diffuse color, because texturefactor was not affected by that. It's mostly good, some small adjustments needed only, and it'll work.

Is this on master branch already? if not, do you plan to release a development branch so people can also assist?

Edited by PeaceMaker

Don't use any images from : imgur, turkmmop, freakgamers, inforge, hizliresim... Or your content will be deleted without notice...
Use : https://metin2.download/media/add/

Please use https://metin2.download/ when uploading files smaller than 100MB, otherwise the approval will take longer due to manual upload.

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
×
×
  • 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.