• 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!

Lua Need help in the loading

3alola1

I don't have time
Joined
Sep 2, 2010
Messages
950
Solutions
9
Reaction score
570
Location
Darashia
PHP:
[28/5/2013 14:9:19] >> Loading config (config.lua)
[28/5/2013 14:9:19] >> Opening logs
[28/5/2013 14:9:19] >> Loading Password encryption:
[28/5/2013 14:9:19] >>> Using (SHA1) encryption ... (done).
[28/5/2013 14:9:19] >> Loading RSA key
[28/5/2013 14:9:19] >> Starting SQL connection
[28/5/2013 14:9:19] >> Running Database Manager
[28/5/2013 14:9:19] >>> Optimized database ... (done).
[28/5/2013 14:9:19] >> Loading groups
[28/5/2013 14:9:19] >> Loading items (OTB)
[28/5/2013 14:9:19] >> Loading items (XML)
[28/5/2013 14:9:19] [Warning - Items::loadFromXml] Cannot load items file.
[28/5/2013 14:9:19] Line: 10652, Info: Extra content at the end of the document

i always sey to me this and i go to the line 10652 and nothing ther could any one pliz help me :(


and here is the the 10652 line
PHP:
  <item id="6305" article="a" name="dead wyvern">
    <attribute key="decayTo" value="0" />
    <attribute key="duration" value="600" />
    <attribute key="corpseType" value="blood" />
  </item>
  <item id="6306" article="a" name="slain undead dragon">
    <attribute key="containerSize" value="10" />
    <attribute key="decayTo" value="6307" />
    <attribute key="duration" value="10" />
    <attribute key="corpseType" value="undead" />
  </item>
  <item id="6307" article="a" name="slain undead dragon">
    <attribute key="containerSize" value="10" />
    <attribute key="decayTo" value="6308" />
    <attribute key="duration" value="900" />
    <attribute key="corpseType" value="undead" />
  </item>
  <item id="6308" article="a" name="slain undead dragon">
    <attribute key="containerSize" value="10" />
    <attribute key="decayTo" value="6309" />
    <attribute key="duration" value="600" />
    <attribute key="corpseType" value="undead" />
  </item>
  <item id="6309" article="a" name="slain undead dragon">
    <attribute key="decayTo" value="0" />
    <attribute key="duration" value="600" />
    <attribute key="corpseType" value="undead" />
  </item>
  <item id="6310" article="a" name="slain lost soul">
    <attribute key="containerSize" value="10" />
    <attribute key="decayTo" value="6319" />
    <attribute key="duration" value="900" />
    <attribute key="corpseType" value="undead" />
  </item>
  <item id="6311" article="a" name="slain lost soul">
    <attribute key="containerSize" value="10" />
    <attribute key="decayTo" value="6310" />
    <attribute key="duration" value="10" />
    <attribute key="corpseType" value="undead" />
 
Last edited:
Go to line 10642 and look for:
XML:
<item id="6301" article="a" name="death ring"

Change to:
XML:
<item id="6301" article="a" name="death ring">

It's missing a > after "death ring".
 
Back
Top