• 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 event "type tag missing"

Swiff

Member
Joined
Apr 6, 2009
Messages
366
Reaction score
12
Location
Sweden
I get errors when starting up my server:

"missing type tag for announce event"

I searched for this and found a solution, so I fixed 8 of those errors, at this moment there are 4 left, but there are no more raids to be fixed..

raids.xml:
PHP:
<raid name="Example" file="example.xml" interval2="480" margin="0" reftype="single" ref="no"/>
<raid name="King" file="king.xml" interval2="120" margin="0" reftype="single" ref="no"/>
<raid name="Earthgod" file="earthgod.xml" interval2="480" margin="0" reftype="single" ref="no"/>
<raid name="Gods" file="gods.xml" interval2="480" margin="0" reftype="single" ref="no"/>
<raid name="Demodras" file="demodras.xml" interval2="600" margin="0" reftype="single" ref="no"/>
<raid name="Ferumbraz" file="ferumbraz.xml" interval2="1080" margin="0" reftype="single" ref="no"/>
<raid name="Devastro" file="devastro.xml" interval2="60" margin="0" reftype="single" ref="no"/>
<raid name="Onoskelis" file="onoskelis.xml" interval2="60" margin="0" reftype="single" ref="no"/>

example of gods raid:
PHP:
<?xml version="1.0" encoding="UTF-8"?>
<raid>
<announce delay="0" type="event" message="The light shines brightly from the sky."/>
<announce delay="50000" message="many clouds starts to gather in an unnatural way above the gate of heaven."/>
<announce delay="120000" message="The sky roars with the sound of thunder as the gods slowly walk down a stair of clouds, into the gate of heaven!"/>

	<singlespawn delay="120000" name="Godess" x="420" y="664" z="3"/>
	<singlespawn delay="120000" name="God" ref="yes" x="418" y="664" z="3"/>
</raid>

Any idea where there would be 4 more invisible raids? :S
 
Fixed your God's raid. You missed two type tags.

Code:
<?xml version="1.0" encoding="UTF-8"?>
<raid>
<announce delay="0" type="event" message="The light shines brightly from the sky."/>
<announce delay="50000" [COLOR=#ff0000]type="event"[/COLOR] message="many clouds starts to gather in an unnatural way above the gate of heaven."/>
<announce delay="120000" [COLOR=#ff0000]type="event"[/COLOR] message="The sky roars with the sound of thunder as the gods slowly walk down a stair of clouds, into the gate of heaven!"/>


    <singlespawn delay="120000" name="Godess" x="420" y="664" z="3"/>
    <singlespawn delay="120000" name="God" ref="yes" x="418" y="664" z="3"/>
</raid>
 

Similar threads

Back
Top