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

Global Event [Raid]

Joined
Sep 29, 2009
Messages
224
Reaction score
0
I Need One Global Event For Automated Raids.

Ex: One Raid Per Day. More No Raid As Orsh,Ferumbras,Etc.

Thx :D
 
here u are

Code:
<globalevent name="raid" time="20:00:00" event="buffer" value="doExecuteRaid('RaidName')"/>


and this one to execute random raids
Code:
<globalevent name="raid" time="20:00:00" event="buffer" value="doExecuteRaid(({'r1','r2','r3','r4'})[math.random(4)])"/>

i got them from here http://otland.net/f132/scheduled-raid-139842/

but it is possible that I can choose which days to run the raids?

-----
SOLVED! :D

Code:
Example
	<globalevent name="Raid_Morgaroth" time="04:10:40" day="Monday" event="buffer" value="doExecuteRaid('Morgaroth')"/>
 
Last edited:
Any way you can make it spawn at random hours? ex: ferumbras spawns monday 18:35 and morgaroth spawns 07:53 sunday? and then the next monday nothing spawns.
 
Back
Top