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

[raid] executeRaid works?

healer007

New Member
Joined
Nov 11, 2008
Messages
174
Reaction score
0
Location
doesnt matter
does executeRaid work on the latest version of
cryingdamson3-gui (8.4-8.42)
if it does then why do i keep getting these errors on console
even tho i do have the raid.xml :S

[06/06/2009 22:34:14] Lua Script Error: [GlobalEvent Interface]
[06/06/2009 22:34:14] data/globalevents/scripts/demon_raid.lua:eek:nThink
[06/06/2009 22:34:14] luaDoExecuteRaid(). Such raid does not exists.
 
Code:
<?xml version="1.0" encoding="utf-8"?>
<raid>
	<announce delay="1000" type="Event" message="Orshabaal's minions are working on his return to the World. LEAVE Edron at once, mortals." />
	<announce delay="6000" type="Event" message="Orshabaal is about to make his way into the mortal realm. Run for your lives!" />
	<announce delay="1200" type="Event" message="Orshabaal has been summoned from hell to plague the lands of mortals again." />
	<singlespawn delay="1200" name="Orshabaal" x="94" y="31" z="7" />
</raid>

it's test raid anyway
 
no my that's my raid (demon.xml. my raid.xml looks like this

Code:
<?xml version="1.0" encoding="UTF-8"?>
<raids>
	<!--
		
<raid name="Testraid" file="testraid.xml" interval2="30" margin="0"/>
		executed on average once every 30 minutes
	-->

<raid name="demona" file="scripts/demon_raid.xml" interval2="120" margin="0"/>

</raids>
 
no my that's my raid (demon.xml. my raid.xml looks like this

Code:
<?xml version="1.0" encoding="UTF-8"?>
<raids>
	<!--
		
<raid name="Testraid" file="testraid.xml" interval2="30" margin="0"/>
		executed on average once every 30 minutes
	-->

<raid name="demona" file="scripts/demon_raid.xml" interval2="120" margin="0"/>

</raids>

Wrong name.
Use this one, replace your raids.xml:
Code:
<raids>
	<!--
		
<raid name="Testraid" file="testraid.xml" interval2="30" margin="0"/>
		executed on average once every 30 minutes
	-->

<raid name="demona" file="scripts/demon.xml" interval2="120" margin="0"/>

</raids>
 
ok how come my raid doesnt load

[09/06/2009 18:46:50] [Error - Raid::loadFromXml]: Could not load data/raids/scripts/demon.xml!
[09/06/2009 18:46:50] [Error - Raids::loadFromXml]: failed to load raid demona
[09/06/2009 18:46:50] Reloaded raids.


Code:
<?xml version="1.0" encoding="utf-8"?>
<raid>
  <!--Announcements-->
  <announce delay="1000" type="Warning" message="Ghazbaran And he's Demons are preparing an 

attack! Be Prepared!" />
  <announce delay="10000" type="Event" message="Ghazbaran is attacking!/>
  <!--Single Spawns-->
<singlespawn delay="10000" name="Demon" x="95" y="129" z="7" />
<singlespawn delay="10000" name="Demon" x="96" y="130" z="7" />
<singlespawn delay="10000" name="Demon" x="97" y="131" z="7" />
<singlespawn delay="10000" name="Ghazbaran" x="98" y="132" z="7" />
  <!--Area Spawns-->
</raid>
 
You missed a tag.
Replace it with this:
Code:
<?xml version="1.0" encoding="utf-8"?>
<raid>
  <!--Announcements-->
  <announce delay="1000" type="Warning" message="Ghazbaran And he's Demons are preparing an attack! Be Prepared!" />
  <announce delay="10000" type="Event" message="Ghazbaran is attacking!" />
  <!--Single Spawns-->
<singlespawn delay="10000" name="Demon" x="95" y="129" z="7" />
<singlespawn delay="10000" name="Demon" x="96" y="130" z="7" />
<singlespawn delay="10000" name="Demon" x="97" y="131" z="7" />
<singlespawn delay="10000" name="Ghazbaran" x="98" y="132" z="7" />
  <!--Area Spawns-->
</raid>
 
[09/06/2009 18:55:40] [Error - Raid::loadFromXml]: Could not load data/raids/scripts/demon.xml!
[09/06/2009 18:55:40] [Error - Raids::loadFromXml]: failed to load raid demona
[09/06/2009 18:55:40] Reloaded raids.


still same error :S
 
Back
Top