• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

problem with the installation of gesior

chiileniito

New Member
Joined
Jun 16, 2009
Messages
33
Reaction score
0
Code:
Fatal error: Uncaught exception 'PDOException' with message 'SQLSTATE[42S02]: Base table or view not found: 1146 Table 'theforgottenserver.z_forum' doesn't exist' in C:\xampp\htdocs\latestnews.php:130 Stack trace: #0 C:\xampp\htdocs\latestnews.php(130): PDO->query('SELECT `z_forum...') #1 C:\xampp\htdocs\index.php(63): include('C:\xampp\htdocs...') #2 {main} thrown in C:\xampp\htdocs\latestnews.php on line 130
that come out when i put my no ip
 
ok look i followed everystep and now wheni click for step 6 i keeps loading for ever then i just exit nad go on localhost/index.php and that come out
 
17678459.jpg
got u another problem ....... what do i doo
 
Code:
 <?xml version="1.0" encoding="UTF-8"?>
<monster name="Eye of the seven" nameDescription="an eye of the seven" race="VENOM" experience="0" speed="0" manacost="0">
  <health now="1" max="1"/>
  <look type="109" head="20" body="30" legs="40" feet="50" corpse="6036"/>
  <targetchange interval="5000" chance="0"/>
  <strategy attack="100" defense="0"/>
  <flags>
    <flag summonable="0"/>
    <flag attackable="1"/>
    <flag hostile="1"/>
    <flag illusionable="0"/>
    <flag convinceable="0"/>
    <flag pushable="0"/>
    <flag canpushitems="0"/>
    <flag canpushcreatures="0"/>
    <flag targetdistance="10"/>
    <flag staticattack="90"/>
    <flag runonhealth="0"/>
  </flags>
  <attacks>
    <attack name="ice" interval="2000" chance="50" range="10" min="-200" max="-350">
      <attribute key="areaEffect" value="iceattack"/>
	  <attribute key="shootEffect" value="ice"/>
    </attack>
    <attack name="fire" interval="1000" chance="25" range="10" min="-200" max="-350">
      <attribute key="areaEffect" value="fireattack"/>
	  <attribute key="shootEffect" value="fire"/>
    </attack>
  </attacks>
  <defenses armor="1999" defense="1999"/>
  <immunities>
    <immunity physical="1"/>
    <immunity holy="1"/>
    <immunity energy="1"/>
    <immunity fire="1"/>
    <immunity death="1"/>
    <immunity earth="1"/>
    <immunity ice="1"/>
    <immunity poison="1"/>
    <immunity lifedrain="1"/>
    <immunity invisible="0"/>
  </immunities>
</monster>
 
<?xml version="1.0" encoding="UTF-8"?>
<monster name="Eye of the seven" nameDescription="an eye of the seven" race="VENOM" experience="0" speed="0" manacost="0">
<health now="1" max="1"/>
<look type="109" head="20" body="30" legs="40" feet="50" corpse="6036"/>
<targetchange interval="5000" chance="0"/>
<strategy attack="100" defense="0"/>
<flags>
<flag summonable="0"/>
<flag attackable="1"/>
<flag hostile="1"/>
<flag illusionable="0"/>
<flag convinceable="0"/>
<flag pushable="0"/>
<flag canpushitems="0"/>
<flag canpushcreatures="0"/>
<flag targetdistance="10"/>
<flag staticattack="90"/>
<flag runonhealth="0"/>
</flags>
<attacks>
<attack name="ice" interval="2000" chance="50" range="10" min="-200" max="-350">
<attribute key="areaEffect" value="iceattack"/>
<attribute key="shootEffect" value="ice"/>
</attack>
<attack name="fire" interval="1000" chance="25" range="10" min="-200" max="-350">
<attribute key="areaEffect" value="fireattack"/>
<attribute key="shootEffect" value="fire"/>
</attack>
</attacks>
<defenses armor="1999" defense="1999"/>
<immunities>
<immunity physical="1"/>
<immunity holy="1"/>
<immunity energy="1"/>
<immunity fire="1"/>
<immunity death="1"/>
<immunity earth="1"/>
<immunity ice="1"/>
<immunity poison="1"/>
<immunity lifedrain="1"/>
<immunity invisible="0"/>
</immunities>
</monster>
this is the seven eye thing
 
Not sure if this will fix your error, but one thing wrong is you have
PHP:
 <?xml version="1.0" encoding="UTF-8"?>
instead of
PHP:
<?xml version="1.0" encoding="UTF-8"?>

Having the space at the very beginning seems to break AAC, you can test this by putting a space there on any monster and reloading your monsters in admin panel.
 
Back
Top