[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
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.
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.
Re: [Help] GunZ 2011 Source Runnable
Quote:
Originally Posted by
Stahlix
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
Re: [Help] GunZ 2011 Source Runnable
try removing
Code:
<SELECTABLE_LANGUAGES>
<LANGUAGE id="USA" name="English" />
</SELECTABLE_LANGUAGES>
Re: [Help] GunZ 2011 Source Runnable
Quote:
Originally Posted by
thunderz1337
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.
Re: [Help] GunZ 2011 Source Runnable
I was having same problem, actually removing the filelist solved it.
Re: [Help] GunZ 2011 Source Runnable
Quote:
Originally Posted by
adz28
I was having same problem, actually removing the filelist solved it.
Awesome thanks it works perfectly now.