2 Problems i need fixed ASAP

Results 1 to 15 of 15
  1. #1
    Alpha Member Chrisss is offline
    MemberRank
    Feb 2012 Join Date
    Ask the Fox!Location
    1,660Posts

    2 Problems i need fixed ASAP

    Okay my first problem is Late Join:

    I just noticed that when i go into my game options first of all my Late Join says Allowed, then i click okay and i see it change to Prohibited and then it will not change back to Allowed, can anybody help me out with this?

    My second problem is that when im admin and i join a game it shoes no name and then my level, and when i click ready and an admin is not ready it shows random letters as my name. Heres some pics.




    Thanks.
    Last edited by Chrisss; 28-05-13 at 02:56 AM.


  2. #2
    Hi, Im Ryuzu yerij007 is offline
    MemberRank
    Oct 2011 Join Date
    Behind You!Location
    311Posts

    Re: 2 Problems i need fixed ASAP

    What source u r using?

  3. #3
    Alpha Member Chrisss is offline
    MemberRank
    Feb 2012 Join Date
    Ask the Fox!Location
    1,660Posts

    Re: 2 Problems i need fixed ASAP

    National

  4. #4
    Fuck Army. sahar042 is offline
    MemberRank
    Jul 2009 Join Date
    833Posts

    Re: 2 Problems i need fixed ASAP

    Follow MERR_HE_IS_NOT_READY, Anyway the problem is Koreans letters i guess.

  5. #5
    Hi, Im Ryuzu yerij007 is offline
    MemberRank
    Oct 2011 Join Date
    Behind You!Location
    311Posts

    Re: 2 Problems i need fixed ASAP

    Replace ZStageSetting.cpp and .h , ZCombatInterface.cpp ,h. And make again,ur changes. I suposse im not sure. Post the mlog. File making the actions.

  6. #6
    Alpha Member Chrisss is offline
    MemberRank
    Feb 2012 Join Date
    Ask the Fox!Location
    1,660Posts

    Re: 2 Problems i need fixed ASAP

    Quote Originally Posted by yerij007 View Post
    Replace ZStageSetting.cpp and .h , ZCombatInterface.cpp ,h. And make again,ur changes. I suposse im not sure. Post the mlog. File making the actions.
    Yeah erm, No. Dont post on random threads just to get your post count up. If you do not wanna help then get out of this section.

  7. #7
    ❀◕ ‿ ◕❀ Zujirawa is offline
    MemberRank
    Aug 2004 Join Date
    凸(¬‿¬)凸Location
    473Posts

    Re: 2 Problems i need fixed ASAP

    And check your message.xml

  8. #8
    Praise the Sun! Solaire is offline
    MemberRank
    Dec 2007 Join Date
    Undead BurgLocation
    2,862Posts

    Re: 2 Problems i need fixed ASAP

    Quote Originally Posted by Sensor View Post
    I just noticed that when i go into my game options first of all my Late Join says Allowed, then i click okay and i see it change to Prohibited and then it will not change back to Allowed, can anybody help me out with this?
    Recompile both client and server, structures don't seem to match.

    Quote Originally Posted by Sensor View Post
    My second problem is that when im admin and i join a game it shoes no name and then my level, and when i click ready and an admin is not ready it shows random letters as my name. Heres some pics.

    That Korean text is somewhere in the MatchServer, only for staff (254, 255). Step into the Stage.Start packet handler and you'll be able to find it pretty easily.

  9. #9
    Alpha Member Chrisss is offline
    MemberRank
    Feb 2012 Join Date
    Ask the Fox!Location
    1,660Posts

    Re: 2 Problems i need fixed ASAP

    I found the korean text in MMatchServer.cpp and yes it was only for 255 and 254 but i cannot unmask it, just because i couldnt unmask it for now i changed it to Administrator and Developer.

    Code:
    bool _GetUserGradeIDName(MMatchUserGradeID gid,char* sp_name)
    {
    	if(gid == MMUG_DEVELOPER) 
    	{ 
    		if(sp_name) {
    			strcpy(sp_name,"Developer");
    		}
    		return true; 
    	}
    	else if(gid == MMUG_ADMIN) {
    		
    		if(sp_name) { 
    			strcpy(sp_name,"Administrator");
    		}
    		return true; 
    	}
    
    
    	return false;
    }

  10. #10
    Valued Member Killer1478 is offline
    MemberRank
    Apr 2011 Join Date
    101Posts

    Re: 2 Problems i need fixed ASAP

    Quote Originally Posted by Sensor View Post
    I found the korean text in MMatchServer.cpp and yes it was only for 255 and 254 but i cannot unmask it, just because i couldnt unmask it for now i changed it to Administrator and Developer.

    Code:
    bool _GetUserGradeIDName(MMatchUserGradeID gid,char* sp_name)
    {
    	if(gid == MMUG_DEVELOPER) 
    	{ 
    		if(sp_name) {
    			strcpy(sp_name,"Developer");
    		}
    		return true; 
    	}
    	else if(gid == MMUG_ADMIN) {
    		
    		if(sp_name) { 
    			strcpy(sp_name,"Administrator");
    		}
    		return true; 
    	}
    
    
    	return false;
    }
    It's early in the morning so I could be wrong but wouldn't just removing everything besides return false; unmask it?

    Unless im just thinking of it incorrectly.

  11. #11
    Alpha Member Chrisss is offline
    MemberRank
    Feb 2012 Join Date
    Ask the Fox!Location
    1,660Posts

    Re: 2 Problems i need fixed ASAP

    Quote Originally Posted by Killer1478 View Post
    It's early in the morning so I could be wrong but wouldn't just removing everything besides return false; unmask it?

    Unless im just thinking of it incorrectly.
    Im not sure but if i do that how will it know that their rank is an admin or dev or not? But anyhow ill try it once ive transferred.

  12. #12
    Praise the Sun! Solaire is offline
    MemberRank
    Dec 2007 Join Date
    Undead BurgLocation
    2,862Posts

    Re: 2 Problems i need fixed ASAP

    Quote Originally Posted by Sensor View Post
    Im not sure but if i do that how will it know that their rank is an admin or dev or not? But anyhow ill try it once ive transferred.
    PHP Code:
    bool _GetUserGradeIDName(MMatchUserGradeID gid,charsp_name)
    {
        
    /*if(gid == MMUG_DEVELOPER) 
        { 
            if(sp_name) {
                strcpy(sp_name,"Developer");
            }
            return true; 
        }
        else if(gid == MMUG_ADMIN) {
            
            if(sp_name) { 
                strcpy(sp_name,"Administrator");
            }
            return true; 
        }*/

        
    return false;

    What Mike said.

  13. #13
    Alpha Member Chrisss is offline
    MemberRank
    Feb 2012 Join Date
    Ask the Fox!Location
    1,660Posts

    Re: 2 Problems i need fixed ASAP

    Quote Originally Posted by Wizkidje View Post
    PHP Code:
    bool _GetUserGradeIDName(MMatchUserGradeID gid,charsp_name)
    {
        
    /*if(gid == MMUG_DEVELOPER) 
        { 
            if(sp_name) {
                strcpy(sp_name,"Developer");
            }
            return true; 
        }
        else if(gid == MMUG_ADMIN) {
            
            if(sp_name) { 
                strcpy(sp_name,"Administrator");
            }
            return true; 
        }*/

        
    return false;

    What Mike said.
    Im not sure if i already tried that but ill give it another go :D Do you know how to fix the other error where it just shows the 13 and no name when someone enters the stage.

  14. #14
    Praise the Sun! Solaire is offline
    MemberRank
    Dec 2007 Join Date
    Undead BurgLocation
    2,862Posts

    Re: 2 Problems i need fixed ASAP

    Quote Originally Posted by Sensor View Post
    Im not sure if i already tried that but ill give it another go :D Do you know how to fix the other error where it just shows the 13 and no name when someone enters the stage.
    Possibly the same reason why your stage settings aren't working properly.

  15. #15
    Alpha Member Chrisss is offline
    MemberRank
    Feb 2012 Join Date
    Ask the Fox!Location
    1,660Posts

    Re: 2 Problems i need fixed ASAP

    You may now close this thread. Wizkid got everything working for me and even my Launcher plus a couple of extra little bits.
    Special thanks to him <3 (No homo) :D



Advertisement