• Unfortunately, we have experienced significant hard drive damage that requires urgent maintenance and rebuilding. The forum will be a state of read only until we install our new drives and rebuild all the configurations needed. Please follow our Facebook page for updates, we will be back up shortly! (The forum could go offline at any given time due to the nature of the failed drives whilst awaiting the upgrades.) When you see an Incapsula error, you know we are in the process of migration.

server launcher problem

Junior Spellweaver
Joined
Jun 11, 2008
Messages
152
Reaction score
0
hello guys i already searched for like 2 hours for a solution and nothing umm i have the loc agent and server running
:

Uploaded with
and i edited gunz launcher and the system.mrc
and every thing and when i start gunz launcher i click
start game and its not working
off topic:
o yea and you see there brazil how can i change it ?
 
Newbie Spellweaver
Joined
Dec 25, 2010
Messages
32
Reaction score
0
look:

GUNZ 1,0,0,290 launched. build (Jun 13 2007 10:25:37)
Log time (11/04/11 16:42:15)
NON-Skip XTrapPatch
CPU ID = AuthenticAMD ( family = 527 , model = 15 , stepping = 2 ) @ 1808 MHz
Display Device = NVIDIA GeForce 7300 LE ( vendor=10de device=1d1 subsys=2077107d revision=a1 )
Display Driver Version = 6.14.0012.8558
Windows = 5.1 Build 2600 , Service Pack 3 (1572336KB) : Windows xp..
Load XML from memory : system/locale.xml- SUCCESS
Country : (BRZ), Language : (BRZ)
Load XML from memory : system/gametypecfg.xml
Load Config from file : config.xml- SUCCESS
Cannot open system/system.xml file.
Error!! - StringTable Initalize Failed
Check notify.xml

can't open system.xml hmm idk this problem but i THINK the launcher/runnable is not good..
 
Upvote 0
Hi, I'm Omar!
Loyal Member
Joined
Jan 6, 2011
Messages
1,345
Reaction score
646
Have you decompiled the system.mrs and forgot to delete the decompiled folder? It gives such error I think.
 
Upvote 0
Junior Spellweaver
Joined
Jun 11, 2008
Messages
152
Reaction score
0
There are countless number of such tutorials, check the Gunz Tutorials section.
yea but sum how evry site files i download dont work i edit the conf and all but nothing work ...
 
Upvote 0
Hi, I'm Omar!
Loyal Member
Joined
Jan 6, 2011
Messages
1,345
Reaction score
646
yea but sum how evry site files i download dont work i edit the conf and all but nothing work ...

Once you get your PHP.ini configurations correct, all webs should work with no errors.
 
Upvote 0
Junior Spellweaver
Joined
Jun 11, 2008
Messages
152
Reaction score
0
Once you get your PHP.ini configurations correct, all webs should work with no errors.
well look at this :
Urank.php
Code:
<?php include("config.php");?>
<link rel="stylesheet" type="text/css" href="style.css"> 
<body bgcolor="070707"><div align="center">
<font color="ffffff" size="1" face="arial">
<?php 
$query = mssql_query("SELECT TOP 10 * FROM Character order by xP Desc");


?>
<style type="text/css">
<!--
.style28 {font-size: 10px}
.style29 {color: #000000; font-weight: ; font-size: 10px; }
.style1 {	font-size: 10px;
	font-weight: ;
}
-->
</style>
<table width="250" border="0">
  <tr >
    <th colspan="0" scope="row"><font color="#FFFFFF" face="Verdana, Arial, Helvetica, sans-serif" size="3">Player's 
      Ranking</font></th>
  </tr>
  <tr>
    <th width="24" scope="row"><font color="#FFFFFF" face="Verdana, Arial, Helvetica, sans-serif"><span class="style28"><strong>#</strong></span></font></th>
    <td width="24"><font color="#FFFFFF" face="Verdana, Arial, Helvetica, sans-serif"><span class="style28"><strong>Name</strong></span></font></td>
    <td width="23"><font color="#FFFFFF" face="Verdana, Arial, Helvetica, sans-serif"><span class="style28"><strong>Level</strong></span></font></td>

  </tr>
  <?php 
 for($i=0;$i < mssql_num_rows($query);++$i)
{
$row = mssql_fetch_row($query);
$rank = $i+1;

  ?>
  <tr>
    <th scope="row"><span class="style28"><strong><?php echo "$rank";?></strong></span></th>
    <td><span class="style28"><strong><?php echo "$row[2]" ;?></strong></span></td>
    <td><span class="style28"><strong><?php echo "$row[3]";?></strong></span></td>
  </tr>
  <?php }?></div>
</table>

Link removed
 
Last edited by a moderator:
Upvote 0
Back
Top