Jump to content

Remove the flicker(update) item


Recommended Posts

  • Premium
12 minutes ago, bambykek said:

Hello, sorry i'm bad english

Tell me how I can remove the flicker of the item when I use blessing scroll
I will be grateful

https://metin2.download/picture/ML2l64K0xHSnNruiBTFzTB6yRMi3N7F0/.gif

this happen because the client-server-client communication is slow
go to 
 

PythonNetworkStreamPhaseGame.cpp
void CPythonNetworkStream::GamePhase()

and remove this

if(dwRecvCount++ >= MAX_RECV_COUNT-1 && GetRecvBufferSize() < SAFE_RECV_BUFSIZE && m_strPhase == "Game")
	break;

you can also rewrite the refine function and resize the packet

Edited by Metin2 Dev
Core X - External 2 Internal
  • Good 1
Link to comment
Share on other sites

49 minutes ago, xTryhard said:

this happen because the client-server-client communication is slow
go to 
 

PythonNetworkStreamPhaseGame.cpp
void CPythonNetworkStream::GamePhase()

and remove this

if(dwRecvCount++ >= MAX_RECV_COUNT-1 && GetRecvBufferSize() < SAFE_RECV_BUFSIZE && m_strPhase == "Game")
	break;

you can also rewrite the refine function and resize the packet

Thank you, it really works ?

  • Good 1
Link to comment
Share on other sites

Guest
This topic is now closed to further replies.


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