game master

Results 1 to 6 of 6
  1. #1
    Evolution Team Th3AnG3L is offline
    MemberRank
    Apr 2014 Join Date
    634Posts

    game master

    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
    Last edited by Th3AnG3L; 22-09-16 at 04:14 PM.


  2. #2
    Evolution Team Th3AnG3L is offline
    MemberRank
    Apr 2014 Join Date
    634Posts

    Re: game master

    any ideas about gm ballon , maybe setcharacter function ?

  3. #3
    Don't be afraid to ask! RevolGaming is offline
    MemberRank
    Jun 2012 Join Date
    1,458Posts

    Re: game master

    Code:
    lpViewObj lpPreview = &*(ObjectPreview*)PreviewStruct;
    	// ----
    	if( lpPreview->CtlCode == 32 )
    	{
                gObj[aIndex].m_ViewSkillState |= 0x1000000; 
                GCStateInfoSend(&gObj[aIndex],1,0x1000000);  
    	}
    Maybe Something like this?

  4. #4
    Evolution Team Th3AnG3L is offline
    MemberRank
    Apr 2014 Join Date
    634Posts

    Re: game master

    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

  5. #5
    Don't be afraid to ask! RevolGaming is offline
    MemberRank
    Jun 2012 Join Date
    1,458Posts

    Re: game master

    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.

  6. #6
    Evolution Team Th3AnG3L is offline
    MemberRank
    Apr 2014 Join Date
    634Posts

    Re: game master

    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);  
    	}



Advertisement