• 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 doesn't work.. [help]

Thylonn

New Member
Joined
Dec 15, 2012
Messages
52
Reaction score
3
I'm not really good with scripts, but I don't know why this isnt working.

Code:
<?xml version="1.0" encoding="UTF-8"?>
<raid>
<announce delay="1000" type="event" message="Scouts report a Red Devil's army gathering near the Blood Crystal" />
<announce delay="3000" type="event" message="Invaders are trying to destroy the Blood Crystal." />
<announce delay="5000" type="event" message="Red Devil's are attacking the Blood Crystal!" />

  <!--Area Spawns-->
   <announce delay="0" message="Red devil raid!!" type="19" /> 
  <areaspawn delay="6500" fromx="407" fromy="1063" fromz="7" tox="427" toy="1043" toz="6">
    <monster name="Red Devil [Raid]" amount="15" />
    <monster name="Red Devil [Raid]" amount="15" />
	<monster name="Red Devil [Raid]" amount="15" />
    <monster name="Red Devil [Raid]" amount="15" />
	<monster name="Red Devil [Raid]" amount="15" />
    <monster name="Red Devil [Raid]" amount="15" />
	<monster name="Red Devil [Raid]" amount="15" />
    <monster name="Red Devil [Raid]" amount="15" />
  </areaspawn>
  
</raid>

Xml file.
Code:
<?xml version="1.0" encoding="UTF-8"?>
<raids>
		<raid name="reddevilraid" file="reddevilraid.xml" interval2="600" margin="1800" reftype="block" enabled="no"/>
		<raid name="shadowghostraid" file="shadowghostraid.xml" interval2="600" margin="1800" reftype="block" enabled="no"/>
		<raid name="dominatorslugraid" file="dominatorslugraid.xml" interval2="600" margin="1800" reftype="block" enabled="no"/>
</raids>

Error : Could not execute raid. (Raid does not exist or other raid is already running).

How do i fix this?
 
place this file in your data/raids folder and name it red_devil.xml

XML:
<?xml version="1.0" encoding="utf-8"?>
<raid>
<announce delay="10" type="event" message="Red devil raid!!"/> 
<announce delay="1000" type="event" message="Scouts report a Red Devil's army gathering near the Blood Crystal" />
<announce delay="3000" type="event" message="Invaders are trying to destroy the Blood Crystal." />
<announce delay="5000" type="event" message="Red Devil's are attacking the Blood Crystal!" />

  <!--Area Spawns-->
	<areaspawn delay="6500" fromx="407" fromy="1063" fromz="7" tox="427" toy="1043" toz="6">
		<monster name="Red Devil [Raid]" amount="15" />
		<monster name="Red Devil [Raid]" amount="15" />
		<monster name="Red Devil [Raid]" amount="15" />
		<monster name="Red Devil [Raid]" amount="15" />
		<monster name="Red Devil [Raid]" amount="15" />
		<monster name="Red Devil [Raid]" amount="15" />
		<monster name="Red Devil [Raid]" amount="15" />
		<monster name="Red Devil [Raid]" amount="15" />
	</areaspawn>
</raid>

and add this line to the raids.xml file
XML:
<raid name="Example" file="red_devil.xml" interval2="2" margin="0" reftype="single" ref="no"/> <!-- The interval here is 2 minutes -->
 

Similar threads

Back
Top