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

Raids Help!

Ussef

New Member
Joined
May 27, 2009
Messages
123
Reaction score
2
Okay so I have no idea at all how to make raids and im asking if anyone could post a simple raid script atleast to get me started on understanding how they work
 
here is an example .. ~ ..

first in raids.xml
Code:
<raid name="Monster Name" file="monster name.xml" chance="10" interval2="60" margin="0" /> Each 60 minutes there is a 10% chance that the raid is executed... />

and in raid folder not scripts <3 in the same folder as raids.xml is there
make new file "monster name.xml"

Code:
<?xml version="1.0" encoding="utf-8"?>
<raid>
  <!--Announcements-->
    <announce delay="1" type="Default" message="Monster Name is attacking town" />
  <!--Single Spawns-->
  <!--Area Spawns-->
    <areaspawn delay="1" fromx="1000" fromy="1000" fromz="7" tox="2000" toy="2000" toz="7">
        <monster name="Monster Name" amount="10" />
    </areaspawn>
</raid>

now explain
from pos to pos i think you understand it
and monster name is the monster name .. u should have it in monsters.xml
and amount is number of monsters will be raids

and message is the broadcast


not mine script
 
thanks man ill try it after i finish dinner :D

hey listen. what do i add in single spawns?
 
Last edited by a moderator:
areaspawn -> singlespawn

Code:
<singlespawn delay="1000" name="hellguard" x="282" y="549" z="12"/>
 
Back
Top