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

informations

olavo

New Member
Joined
May 29, 2007
Messages
74
Reaction score
0
Can anybody give me an exemple of raid whitout bugs?

-----------------------
How i put players on-line in my site? (Can i put?)

-----------------------
highscoreDisplayPlayers = 15
updateHighscoresAfterMinutes = 60

How it works??
 
About the raid:

in raids.xml:
<raid name="Testraid" file="testraid.xml" interval2="30" margin="0"/>

in testraid.xml:
<?xml version="1.0" encoding="UTF-8"?>
<raid>

<announce type="event" delay="0" message="A powerful army of undead is amassing in the city, beware!" />

<singlespawn delay="5000" name="Demon Skeleton" x="367" y="360" z="7" />
<singlespawn delay="5500" name="Crypt Shambler" x="362" y="355" z="7" />
<singlespawn delay="6000" name="Undead Dragon" x="367" y="352" z="7" />
<singlespawn delay="5000" name="Lich" x="362" y="349" z="7" />
<singlespawn delay="5500" name="Demon Skeleton" x="369" y="348" z="7" />
<singlespawn delay="6000" name="Crypt Shambler" x="360" y="345" z="7" />
</raid>

Just change the position of the monsters spawns and add more monsters if you want :)
 
awnser

and for multiple respaw??
like :
Repas of hydra form pos ... to pos ... quaty
 
Code:
<raid>
<announce delay="0" type="19" message="Orcs are coming to invade Ravnica!"/>
<areaspawn delay="10000" fromx="478" fromy="473" fromz="7" tox="538" toy="522" toz="7">
<monster name="Orc" amount="15"/>
<monster name="Orc Spearman" amount="8"/>
<monster name="Orc Shaman" amount="3"/>
<monster name="Orc Berserker" amount="2"/>
</areaspawn>

<announce delay="90000" type="19" message="The first warlord is at sight, to arms!"/>
<areaspawn delay="95000" fromx="478" fromy="473" fromz="7" tox="538" toy="522" toz="7">
<monster name="Orc" amount="10"/>
<monster name="Orc Spearman" amount="5"/>
<monster name="Orc Shaman" amount="8"/>
<monster name="Orc Berserker" amount="5"/>
<monster name="Orc Leader" amount="2"/>
<monster name="Orc Warlord" amount="1"/>
</areaspawn>

<announce delay="240000" type="19" message="Orcus has come!"/>
<areaspawn delay="245000" fromx="478" fromy="473" fromz="7" tox="547" toy="531" toz="7">
<monster name="Orc" amount="10"/>
<monster name="Orc Spearman" amount="5"/>
<monster name="Orc Shaman" amount="5"/>
<monster name="Orc Berserker" amount="7"/>
<monster name="Orc Leader" amount="10"/>
<monster name="Orc Warlord" amount="4"/>
<monster name="Orcus" amount="1"/>
</areaspawn>
</raid>

There you go :)
 
Back
Top