1.5 Matchserver

Results 1 to 17 of 17
  1. #1
    Account Upgraded | Title Enabled! ForceGFX is offline
    MemberRank
    Jan 2012 Join Date
    The NetherlandsLocation
    412Posts

    1.5 Matchserver

    Hi Ragezone,
    so i want now to compile the MatchServer/MatchAgent/Locator by my self. But i don't know what i have to change to get it stable, i mean like: Removing mef, xtrap etc.. to get it good to use.
    Can somebody help me with what the reqruitements are?

    Thank you


  2. #2
    I'm retired, I'm already jorklenis2 is online now
    MemberRank
    Oct 2011 Join Date
    PanamáLocation
    883Posts

    Re: 1.5 Matchserver

    server files binares 1.5
    Free Online Storage & File Upload with FileServe

    wait 1 hour upload other files okey (:

  3. #3
    Newbie kn95951135 is offline
    MemberRank
    Nov 2005 Join Date
    MalaysiaLocation
    388Posts

    Re: 1.5 Matchserver

    I need it too~ ^^ thanks for sharing...
    and thanks ForceGFX for request =D

  4. #4
    Account Upgraded | Title Enabled! ForceGFX is offline
    MemberRank
    Jan 2012 Join Date
    The NetherlandsLocation
    412Posts

    Re: 1.5 Matchserver

    Lol, i mean what to disable/enable in the source xD

  5. #5
    Hi, I'm Omar! Vusion is offline
    MemberRank
    Jan 2011 Join Date
    HereLocation
    1,658Posts

    Re: 1.5 Matchserver

    Stop reuploading my source. At least, respect me and do it privately.

  6. #6
    Proficient Member [S]pirit is offline
    MemberRank
    Apr 2009 Join Date
    182Posts

    Re: 1.5 Matchserver

    Open up Gunz.vcproj, scroll down to the build configuration you want to use, get to PreprocessorDefinitions, and remove reference to _XTRAP or _GAMEGUARD.
    Pretty straightforward.
    Edit: Oh yeah, to remove MEF, just search for every file containing ".mef", then you're gonna find something like (FOR EXAMPLE)
    Code:
    #ifndef _DEBUG
    strFileNameZItem += ".mef";
    #endif
    simply comment out the whole block, but be careful what else you comment out, it could be mef-unrelated but only active in release mode. I highly recommend you don't comment the #ifndef _DEBUG 's.
    Last edited by [S]pirit; 02-03-12 at 02:54 PM.

  7. #7
    Gunz General Develop Gun[Lengend] is offline
    MemberRank
    Jan 2010 Join Date
    Gunz Viet NamLocation
    312Posts

    Re: 1.5 Matchserver

    _XFIRE
    _XTRAP, Right ?

  8. #8
    Proficient Member [S]pirit is offline
    MemberRank
    Apr 2009 Join Date
    182Posts

    Re: 1.5 Matchserver

    Quote Originally Posted by Gun[Lengend] View Post
    _XTRAP, Right ?
    I always mix them up -.-

  9. #9
    Account Upgraded | Title Enabled! ForceGFX is offline
    MemberRank
    Jan 2012 Join Date
    The NetherlandsLocation
    412Posts

    Re: 1.5 Matchserver

    I also got the problem with removing mef in my runnable,

    #ifndef _DEBUG
    strFileNameZItem += ".mef";
    #endif

    I edit it to
    #ifndef _DEBUG
    //strFileNameZItem += ".mef";
    #endif

    After that it can read system.xml etc..
    But GametypeCFG Not. And yes i removed the .xml.mef also.

  10. #10
    Gunz General Develop Gun[Lengend] is offline
    MemberRank
    Jan 2010 Join Date
    Gunz Viet NamLocation
    312Posts

    Re: 1.5 Matchserver

    Code:
    #ifndef _DEBUG
    //strFileNameZItem += ".mef";
    #endif
    .
    You not wrong, but should like this :

    Code:
    #ifndef _DEBUG
    strFileNameZItem += "";
    #endif
    .
    And :
    After that it can read system.xml etc..
    But GametypeCFG Not. And yes i removed the .xml.mef also.
    Must be .xml, don't comment out of it!

  11. #11
    Account Upgraded | Title Enabled! ForceGFX is offline
    MemberRank
    Jan 2012 Join Date
    The NetherlandsLocation
    412Posts

    Re: 1.5 Matchserver

    Quote Originally Posted by Gun[Lengend] View Post
    Code:
    #ifndef _DEBUG
    //strFileNameZItem += ".mef";
    #endif
    .
    You not wrong, but should like this :

    Code:
    #ifndef _DEBUG
    strFileNameZItem += "";
    #endif
    .
    And :

    Must be .xml, don't comment out of it!
    I know!!
    and what you say isn't working

  12. #12
    Gunz General Develop Gun[Lengend] is offline
    MemberRank
    Jan 2010 Join Date
    Gunz Viet NamLocation
    312Posts

    Re: 1.5 Matchserver

    But GametypeCFG Not. And yes i removed the .xml.mef also.
    before edit :
    .xml.mef
    after edit :
    .xml
    Do you know my mean ?

  13. #13
    Account Upgraded | Title Enabled! ForceGFX is offline
    MemberRank
    Jan 2012 Join Date
    The NetherlandsLocation
    412Posts

    Re: 1.5 Matchserver

    Yes, i knowwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwww -.-

  14. #14
    Account Upgraded | Title Enabled! Kreain is offline
    MemberRank
    May 2008 Join Date
    679Posts

    Re: 1.5 Matchserver

    Gun, you are wrong, commenting out the line is the better choice, your is not wrong, but it SHOULDN'T be like that as commenting it out means it can simply be uncommented to be bought back.

  15. #15
    Account Upgraded | Title Enabled! ForceGFX is offline
    MemberRank
    Jan 2012 Join Date
    The NetherlandsLocation
    412Posts

    Re: 1.5 Matchserver

    Quote Originally Posted by Kreain View Post
    Gun, you are wrong, commenting out the line is the better choice, your is not wrong, but it SHOULDN'T be like that as commenting it out means it can simply be uncommented to be bought back.
    If i uncomment it it is doing nothing more after Gametypecfg.xml

  16. #16
    Account Upgraded | Title Enabled! Kreain is offline
    MemberRank
    May 2008 Join Date
    679Posts

    Re: 1.5 Matchserver

    Force, I didn't say that now, did I?

  17. #17
    Proficient Member [S]pirit is offline
    MemberRank
    Apr 2009 Join Date
    182Posts

    Re: 1.5 Matchserver

    Jesus..
    Commenting it out is the same as replacing ".mef" with "", heck, it saves just a tiny bit more memory (take the word bit more seriously, will you?)
    I already replied to your other thread about why it doesn't work after gametypecfg.xml. I suggest you think carefully about what the default gunz runnable does, and patch those up as you go.
    Hint:
    *Runnable loads config
    *Runnable loads xml
    *Runnable checks filelistcrc
    *Runnable checks serialkey
    etc.



Advertisement