Zteam6.3 BUG Requesting for help
1.Occasionally Private not receive information
https://forum.ragezone.com/cache.php...886ca329bf.JPG
2.Summoner etetnal winged Gloves error
https://forum.ragezone.com/cache.php...282e997022.jpg
3.class RF occasionally death using BUFF skills top does not show
Re: Zteam6.3 BUG Requesting for help
1). Turn off separate chat client. Comment out it in the source client.
Re: Zteam6.3 BUG Requesting for help
Or change function void ChatExpanded::WhisperChatRecv(CHAT_WHISPER_EX * pRequest) in ChatExpanded.cpp to this:
Code:
void ChatExpanded::WhisperChatRecv(CHAT_WHISPER_EX * pRequest)
{
if( gTrayMode.InTray && pRequest->Type == 0 )
{
char Text[200];
sprintf(Text, "You have new message:\n [%s]:[%s]", pRequest->Name, pRequest->Message);
gTrayMode.ShowMessage(NIIF_WARNING, "MU Online", Text);
}
// ----
if( pRequest->Type >= 1 && pRequest->Type <= 9)
{
SetByte((LPVOID)(0x006401AF+1), pRequest->Type);
}
else
{
SetByte((LPVOID)(0x006401AF+1), 2);
}
// ----
pRequest->Type = 0;
pWhisperChatRecv(pRequest);
}
Re: Zteam6.3 BUG Requesting for help
Re: Zteam6.3 BUG Requesting for help
Re: Zteam6.3 BUG Requesting for help
Please next time use prefix [Help] on your topic
View the Rules of each section you post please,
[Help] fixed
Regards Dope.
Re: Zteam6.3 BUG Requesting for help