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

[Request][Raid] Halp :D

Kedor

New Member
Joined
Mar 3, 2008
Messages
263
Reaction score
0
Location
Poland, Gdynia
raids.xml
Code:
<raid name="Demodras"  	[COLOR="Red"]here i putted the "type"[/COLOR]   file="demodras.xml" 	interval2="1440" margin="0" />
demodras.xml
Code:
<raid>
<announce    [COLOR="Red"]or  here :P[/COLOR]   delay="0" message="Demodras Noticed In Dragons Mountains!" />
<singlespawn delay="0" name="Demodras" x="124" y="199" z="9" />
<singlespawn delay="0" name="Dragon Lord" x="124" y="199" z="9" />
<singlespawn delay="0" name="Dragon Lord" x="124" y="198" z="9" />
<singlespawn delay="0" name="Dragon Lord" x="124" y="200" z="9" />
<singlespawn delay="0" name="Dragon Lord" x="125" y="199" z="9" />
<singlespawn delay="0" name="Dragon Lord" x="123" y="199" z="9" />

<singlespawn delay="0" name="Dragon Lord" x="125" y="198" z="9" />
<singlespawn delay="0" name="Dragon Lord" x="123" y="199" z="9" />
<singlespawn delay="0" name="Dragon Lord" x="125" y="200" z="9" />
<singlespawn delay="0" name="Dragon Lord" x="123" y="199" z="9" />
</raid>
and i got the error
Code:
[25/03/2008  06:27:07] [Notice] Raid: type tag missing for announce event. Using default: 19

when i put "type="19" to raids.xml or demodras.xml i got error
Code:
[25/03/2008  06:29:11] [Notice] Raid: Unknown type tag missing for announce event. Using default: 19


any1 got idea?
 
raids.xml
Code:
<raid name="Demodras" file="demodras.xml" interval2="1440" margin="0" />
demodras.xml
Code:
<raid>
<announce delay="1000" type="event" message="Demodras Noticed In Dragons Mountains!" />
<singlespawn delay="0" name="Demodras" x="124" y="199" z="9" />
<singlespawn delay="0" name="Dragon Lord" x="124" y="199" z="9" />
<singlespawn delay="0" name="Dragon Lord" x="124" y="198" z="9" />
<singlespawn delay="0" name="Dragon Lord" x="124" y="200" z="9" />
<singlespawn delay="0" name="Dragon Lord" x="125" y="199" z="9" />
<singlespawn delay="0" name="Dragon Lord" x="123" y="199" z="9" />

<singlespawn delay="0" name="Dragon Lord" x="125" y="198" z="9" />
<singlespawn delay="0" name="Dragon Lord" x="123" y="199" z="9" />
<singlespawn delay="0" name="Dragon Lord" x="125" y="200" z="9" />
<singlespawn delay="0" name="Dragon Lord" x="123" y="199" z="9" />
</raid>

That should do it.
Jo3
 
solved lol :)) i tried type="19" :D

thanks .. cant rep you again ^^
"need to spread some rep around before i will be able to give you again xD"

SOLVED.. CLOSE PLEASE :p
 
solved lol :)) i tried type="19" :D

thanks .. cant rep you again ^^
"need to spread some rep around before i will be able to give you again xD"

SOLVED.. CLOSE PLEASE :p

No problem, and by the way here are all the "types" you can use.

type="warning"
type="event"
type="default"
type="description"
type="smallstatus"
type="blueconsole"
type="redconsole"

Jo3
 
Hi i'm having a problem with making my raids auto execute... i dont completely understand elfs post... i made a globalvent named after my raid... and i copied that code into a Orshabaal.lua and changed the name to orshabaal in the code... and it still does'nt auto execute...

Golbal Events:
Code:
<?xml version="1.0" encoding="UTF-8"?>
<globalevents>
	<globalevent name="save" interval="900" event="script" value="save.lua"/>
	<globalevent name="shop" interval="30" script="shop.lua"/>
	<globalevent name="Orshabaal" interval="250" event="script" value="Orshabaal.lua"/>
</globalevents>


Raids.xml:
Code:
<?xml version="1.0" encoding="UTF-8"?>
<raids>
	<raid name="Demodras" file="demodras.xml" interval2="1440" margin="0" />
	<raid name="Orshabaal" file="Orshabaal.xml" interval2="4500" margin="0" />
	<raid name="Ghazbaran" file="Ghazbaran.xml" interval2="1500" margin="0" />

</raids>


Please Help,
Thanks!
 
Back
Top