• 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!
  • 2026 staff recruitment is open! Check it out and consider applying!

Problem with raids :S

Serginov

Onkonkoronkonk
Joined
Jun 28, 2008
Messages
1,321
Reaction score
18
Location
Sweden - Dalarna
Okay, I make a raid. I use this for example, morgaroth.xml:
PHP:
<?xml version="1.0" encoding="utf-8"?>
<raid>
  <!--Announcements-->
  <announce delay="0" type="Event" message="The ancient volcano on Goroma slowly becomes active once again." />
  <announce delay="40000" type="Event" message="There is an evil presence at the volcano of Goroma." />
  <announce delay="55000" type="Event" message="Evil Cultists have called an ancient evil into the volcano on Goroma. Beware of its power mortals." />
  <!--Single Spawns-->
  <singlespawn delay="60000" name="Morgaroth" x="32062" y="32625" z="14" />
  <!--Area Spawns-->
</raid>
and:
PHP:
<?xml version="1.0" encoding="utf-8"?>
<raids>
		<raid name="morgaroth" file="morgaroth.xml" interval2="1440" margin="0"/>
</raids>
And restart server/reload raids.
But when I'm going to execute the raid:
Code:
20:49 /raid morgaroth
20:49 Such raid does not exists.

I'm using TFS 0.3 ALPHA 4



Thanks in advance
 
Last edited:
I followed ur tutorial and I did exactly what it says but when I execute the raid by using the item it just says "Raid morgaroth started" And nothing else happens :s just that text. I did exactly what your tutorial says and i re-done it like 2 times but it just doesn't work :S

Does this really work with TFS 0.3 Alpha 4?
 
try it:

Morgaroth.xml
Code:
<raid>
<announce delay="0" type="event" message="The ancient volcano on Erico Bay slowly becomes active once again."/>
<announce delay="300000" type="event" message="There is an evil presence at the volcano of Erico Bay."/>
<announce delay="600000" type="event" message="Evil Cultists have called an ancient evil into the volcano on Erico Bay. Beware of its power mortals."/>
<singlespawn delay="600000" name="Morgaroth" x="1661" y="598" z="10" />
<singlespawn delay="300000" name="Demon" x="1660" y="593" z="10" />
<singlespawn delay="300000" name="Demon" x="1667" y="599" z="10" />
<singlespawn delay="300000" name="Demon" x="1660" y="586" z="10" />
<singlespawn delay="300000" name="Demon" x="1680" y="580" z="10" />
<singlespawn delay="300000" name="Demon" x="1679" y="595" z="10" />
<singlespawn delay="300000" name="Demon" x="1680" y="595" z="10" />
<singlespawn delay="300000" name="Demon" x="1669" y="590" z="10" />
</raid>


raids.xml
Code:
<raid name="Morgaroth" file="Morgaroth.xml" chance="2" interval2="120" margin="0" /> Each 120 minutes there is a 2% chance that the raid is executed... />

change positions and interval like informations.
 
LOL!, PUT enable="1" in the end of the code...
like this:
Code:
<raids>
        <raid name="morgaroth" file="morgaroth.xml" interval2="1440" margin="0" enable="1"/>
</raids>
And no problems :D
 

Similar threads

Back
Top