Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

Cannot open system/locale.xml file -_-'

Joined
Jul 11, 2012
Messages
786
Reaction score
190
I've Built it with BRZ_Release_publish and fixed all errors, now I run it, the game doesn't enter but it also doesn't give any errors. I've oppened the mlog.txt it shows this:
GUNZ 1,0,0,290 launched. build (Oct 4 2012 17:30:36)
Log time (10/04/12 18:01:30)
CPU ID = GenuineIntel ( family = 15 , model = 4 , stepping = 9 ) @ 3066 MHz
Display Device = Intel(R) 82945G Express Chipset Family ( vendor=8086 device=2772 subsys=100317aa revision=2 )
Display Driver Version = 6.14.0010.4926
Windows = 5.1 Build 2600 , Service Pack 3 (513136KB) : Windows xp..
Cannot open system/locale.xml file.
Error!! - StringTable Initalize Failed
Cannot open (null) file.
Invalid Locale

NOW, What is this !? :*:
 
Daemonsring Developer
Joined
Jul 10, 2007
Messages
679
Reaction score
262
I've Built it with BRZ_Release_publish and fixed all errors, now I run it, the game doesn't enter but it also doesn't give any errors. I've oppened the mlog.txt it shows this:


NOW, What is this !? :*:
Is the country inside locale.xml set on BRZ?
Have you disabled filelist?
Is your system.mrs not accidently missing or unpacked? (if you have both system.mrs and an unpacked system folder it will cause problems too)
Have you disabled mef files?
Anyway, post your locale.xml please.
 
Last edited:
Upvote 0
Joined
Jul 11, 2012
Messages
786
Reaction score
190
Is the country inside locale.xml set on BRZ?
Have you disabled filelist?
Is your system.mrs not accidently missing or unpacked? (if you have both system.mrs and an unpacked system folder it will cause problems too)
Have you disabled mef files?
Anyway, post your locale.xml please.
-No the country inside it is not BRZ..
-What's filelist o_O?
-No I have only the system.mrs, after editing it, I've packed it and deleted the unpacked one.
-What's MEF files xD?
and here is the locale.xml:
<?xml version="1.0" encoding="UTF-8"?>
<XML>
<LOCALE>
<COUNTRY>USA</COUNTRY>
<LANGUAGE>USA</LANGUAGE> <!-- 아래의 SELECTABLE_LANGUAGES에서 같은 ID를 가지는 항목이 있어야 함 -->
<MAXPLAYERS>16</MAXPLAYERS>
<SELECTABLE_LANGUAGES> <!-- WARNING : HARD_CODING at "unsigned int GetLanguageIndexByCmdLineStr_forNHNUSA()" -->
<LANGUAGE id="USA" name="English" />
</SELECTABLE_LANGUAGES>
</LOCALE>
</XML>

HOPE U CAN HELP :)
 
Upvote 0
Daemonsring Developer
Joined
Jul 10, 2007
Messages
679
Reaction score
262
-No the country inside it is not BRZ..
-What's filelist o_O?
-No I have only the system.mrs, after editing it, I've packed it and deleted the unpacked one.
-What's MEF files xD?
and here is the locale.xml:


HOPE U CAN HELP :)

Change local to:

Code:
<?xml version="1.0" encoding="UTF-8"?>
<XML>
<LOCALE>
<COUNTRY>BRZ</COUNTRY>
<LANGUAGE>BRZ</LANGUAGE> <!-- 아래의 SELECTABLE_LANGUAGES에서 같은 ID를 가지는 항목이 있어야 함 -->
<MAXPLAYERS>16</MAXPLAYERS>
<SELECTABLE_LANGUAGES> <!-- WARNING : HARD_CODING at "unsigned int GetLanguageIndexByCmdLineStr_forNHNUSA()" -->
<LANGUAGE id="USA" name="English" />
</SELECTABLE_LANGUAGES>
</LOCALE>
</XML>
 
Upvote 0
Back
Top