Match Agent Source

Results 1 to 8 of 8
  1. #1
    Proficient Member AlgozXD is offline
    MemberRank
    Jan 2009 Join Date
    São Paulo, BraLocation
    157Posts

    talk Match Agent Source

    Hello, i'm an 3d Modeler trying to make a server to tryout items. I used the EvilGunz source. Fixed some problms I had, but now my Match Agent won't open. Seariching I foudn it's something in the source. I'm that experienced with coding, but i'm looking into it. Anyone could help me?

    There no errors in the log. It just stops at connecting to match server.

    Code:
    [05/31/21 14:01:06] Command registeration completed
    
    ================================== Agent configure info ==================================
    [05/31/21 14:01:06] Release Date : Jan 16 2012
    ===========================================================================================
    
    [05/31/21 14:01:06] Match Agent Created (Port:5100)
    [05/31/21 14:01:06] MMatchAgent::ConnectToMatchServer BEGIN 
    [05/31/21 14:01:06] Request Connect to matchserver ip(127.0.0.1), port(6000).


  2. #2
    The forgotten memory NesuxGxx is offline
    MemberRank
    May 2014 Join Date
    ZERONISLocation
    262Posts

    Re: Match Agent Source

    If you only need test, it may not be necessary to use the MatchAgent, if you want people with nat error to enter if you need it

  3. #3
    Account Upgraded | Title Enabled! Enough is offline
    MemberRank
    Oct 2012 Join Date
    299Posts

    Re: Match Agent Source

    Just reinforcing the friend's answer above, which is correct.

    If you only need to test the items, i suggest you use less customized files.

  4. #4
    Proficient Member AlgozXD is offline
    MemberRank
    Jan 2009 Join Date
    São Paulo, BraLocation
    157Posts

    Re: Match Agent Source

    Thanks for the answers. I'll look for a simpler client for now. But i'll keep looking at this. Because when i try to logging it just says "unable to connect to server"

  5. #5
    Proficient Member AlgozXD is offline
    MemberRank
    Jan 2009 Join Date
    São Paulo, BraLocation
    157Posts

    Re: Match Agent Source

    Error update: Looks like there are some compatibility problems with the Match Agent on windows 10. Tryed 5 different sources from the jur13n's to joe's evilgunz. None of them worked for me. No error messages...I'll not give up...

  6. #6
    Valued Member xDividerx is offline
    MemberRank
    Feb 2012 Join Date
    119Posts

    Re: Match Agent Source

    Quote Originally Posted by AlgozXD View Post
    Error update: Looks like there are some compatibility problems with the Match Agent on windows 10. Tryed 5 different sources from the jur13n's to joe's evilgunz. None of them worked for me. No error messages...I'll not give up...
    I can supply you with a working match agent for any source.

  7. #7
    Proficient Member AlgozXD is offline
    MemberRank
    Jan 2009 Join Date
    São Paulo, BraLocation
    157Posts

    Re: Match Agent Source

    Sure? Why so mysterious? PM Me lol

  8. #8
    Member TsukynoMe is offline
    MemberRank
    Nov 2012 Join Date
    MarsLocation
    62Posts

    Re: Match Agent Source

    it could be that the packages are encrypted in different ways which I think is most likely happening to you

    those who understand usually change these encryptions to avoid malicious people ending up using the matchserver ip which in this case is public through the released port and end up hindering the matchserver to communicate with the matchagent

    Code:
    char MPacketCrypter::_Enc(char s, char key)
    {
    	WORD w;
    	BYTE b, bh;
    	b = s ^ key;
    	w = b << m_nSHL;
    	bh = (w&0xFF00)>>8;
    	b = w&0xFF;
    	return( BYTE( b | bh ) ^ 0xF0 ); //0xF0 default packet encrypt
    }
    Code:
    char MPacketCrypter::_Dec(char s, char key)
    {
    	BYTE b, bh, d;
    
    	b = s^0xF0; //0xF0 default packet decrypt
    	bh = b&m_ShlMask;
    	d = (bh<<(8-m_nSHL))|(b>>m_nSHL);
    
    	return ( d ^ key );
    }
    but maybe this is not the solution to your problem



Advertisement