does someone knows where is this problems to be fixed
1. GM Head Balloon not showing to members
2. GM can use M key teleport menu - Fixed
Printable View
does someone knows where is this problems to be fixed
1. GM Head Balloon not showing to members
2. GM can use M key teleport menu - Fixed
any ideas about gm ballon , maybe setcharacter function ?
Maybe Something like this?Code:lpViewObj lpPreview = &*(ObjectPreview*)PreviewStruct;
// ----
if( lpPreview->CtlCode == 32 )
{
gObj[aIndex].m_ViewSkillState |= 0x1000000;
GCStateInfoSend(&gObj[aIndex],1,0x1000000);
}
mine is almot the same, so i figured it out the problem m_ViewSkillState , didnt read correct it, so i fixed the function on different way, and display it, thanks for the help, wouldnt checked this
Can you share here the fix, so if in the feature anybody has this kind of problem, they can read and find the solution for it here.
Code://GM Head Fix
//Check all CtlCodes of Character
if( (lpMsg->CtlCode == 32) || (lpMsg->CtlCode == 8) || (lpMsg->CtlCode == 16) )
{
// Use Skill State 28 Logo Icon
gObj[aIndex].m_ViewSkillState |= 0x1000000;
// Send Package
GCStateInfoSend(&gObj[aIndex],1,0x1000000);
}