[Help] GunZ 2011 Source Runnable

Results 1 to 8 of 8
  1. #1
    Member xTruongx is offline
    MemberRank
    Mar 2010 Join Date
    Michigan, USLocation
    79Posts

    [Help] GunZ 2011 Source Runnable

    How to build the runnable? I keep trying with other builds, but when I trie to build with "USA_RELEASE_PUBLISH" all of them ends up with this locale error.

    .mef removed only

    Locale.xml
    Code:
    <?xml version="1.0" encoding="UTF-8"?>
    <XML>
    <LOCALE>
    <COUNTRY>USA</COUNTRY>
    <LANGUAGE>USA</LANGUAGE>
    <MAXPLAYERS>16</MAXPLAYERS>
    <SELECTABLE_LANGUAGES>
    <LANGUAGE id="USA" name="English" />
    </SELECTABLE_LANGUAGES>
    </LOCALE>
    </XML>
    Runnable
    Code:
    GUNZ 1,0,0,290 launched. build (Mar 28 2012 22:19:08) 
    Log time (03/31/12 21:01:36)
    CPU ID = AuthenticAMD ( family = 4111 , model = 5 , stepping = 3 ) @ 3092 MHz
    Display Device = VMware SVGA II ( vendor=15ad device=405 subsys=40515ad revision=0 )
    Display Driver Version = 11.8.0011.0000
    Windows = 5.1 Build 2600 , Service Pack 3 (2096624KB) :  Windows xp..
    Cannot open system/locale.xml file.
    Error!! - StringTable Initalize Failed
    Cannot open (null) file.
    Invalid Locale


  2. #2
    Account Upgraded | Title Enabled! ThunderZ is offline
    MemberRank
    Oct 2011 Join Date
    396Posts

    Re: [Help] GunZ 2011 Source Runnable

    Try building a diff locale and change it in locale.

    Try BRZ_Release_publish

    i use KOR but it has alot of issues that need be fixing but i hear BRZ is most stable / less issues.

  3. #3
    Enthusiast Stahlix is offline
    MemberRank
    May 2011 Join Date
    43Posts

    Re: [Help] GunZ 2011 Source Runnable

    You probably didn't remove the .mef correctly, make sure you removed everything. Just as a hint this is probably where you messed up:
    Code:
    #ifndef _DEBUG
    	strFileNameFillist += ".mef";
    
    	m_fileCheckList.Open(strFileNameFillist.c_str(), &m_FileSystem);
    	m_FileSystem.SetFileCheckList(&m_fileCheckList);
    #endif
    Commenting only the line where the .mef is won't do. You need to comment out the 2 other lines as well, assuming you commented out the lines and didn't use another method. In any case those 2 other lines must also be removed.
    Last edited by Stahlix; 02-04-12 at 10:57 PM.

  4. #4
    Member xTruongx is offline
    MemberRank
    Mar 2010 Join Date
    Michigan, USLocation
    79Posts

    Re: [Help] GunZ 2011 Source Runnable

    Quote Originally Posted by Stahlix View Post
    You probably didn't remove the .mef correctly, make sure you removed everything. Just as a hint this is probably where you messed up:
    Code:
    #ifndef _DEBUG
    	strFileNameFillist += ".mef";
    
    	m_fileCheckList.Open(strFileNameFillist.c_str(), &m_FileSystem);
    	m_FileSystem.SetFileCheckList(&m_fileCheckList);
    #endif
    Commenting only the line where the .mef is won't do. You need to comment out the 2 other lines as well, assuming you commented out the lines and didn't use another method. In any case those 2 other lines must also be removed.
    Nope those lines are removed too with the .mef

  5. #5
    Account Upgraded | Title Enabled! ThunderZ is offline
    MemberRank
    Oct 2011 Join Date
    396Posts

    Re: [Help] GunZ 2011 Source Runnable

    try removing

    Code:
    <SELECTABLE_LANGUAGES>
    <LANGUAGE id="USA" name="English" />
    </SELECTABLE_LANGUAGES>

  6. #6
    Member xTruongx is offline
    MemberRank
    Mar 2010 Join Date
    Michigan, USLocation
    79Posts

    Re: [Help] GunZ 2011 Source Runnable

    Quote Originally Posted by thunderz1337 View Post
    try removing

    Code:
    <SELECTABLE_LANGUAGES>
    <LANGUAGE id="USA" name="English" />
    </SELECTABLE_LANGUAGES>
    That caught my view to, but sadly it didn't fix that when I commented that out; It just crashes instead with a .dmp and a log. I do appreciate the your help with the problem.

    Currently:
    Code:
    <?xml version="1.0" encoding="UTF-8"?>
    <XML>
    <LOCALE>
    <COUNTRY>USA</COUNTRY>
    <LANGUAGE>USA</LANGUAGE>
    <MAXPLAYERS>16</MAXPLAYERS>
    <!--
    <SELECTABLE_LANGUAGES>
    <LANGUAGE id="USA" name="English" />
    </SELECTABLE_LANGUAGES>
    -->
    </LOCALE>
    </XML>
    When I went with brz_release_publish you are right its stable and barely need to remove or change anything.
    Last edited by xTruongx; 03-04-12 at 06:08 PM.

  7. #7
    Ecchi addicted adz28 is offline
    MemberRank
    Nov 2008 Join Date
    IkebukuroLocation
    524Posts

    Re: [Help] GunZ 2011 Source Runnable

    I was having same problem, actually removing the filelist solved it.

  8. #8
    Member xTruongx is offline
    MemberRank
    Mar 2010 Join Date
    Michigan, USLocation
    79Posts

    Re: [Help] GunZ 2011 Source Runnable

    Quote Originally Posted by adz28 View Post
    I was having same problem, actually removing the filelist solved it.
    Awesome thanks it works perfectly now.



Advertisement