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

Lua Hmm, why this script doesn't work?

Dankoo

Active Member
Joined
Sep 4, 2010
Messages
1,007
Reaction score
27
Lua:
<globalevent name="raid_quara" time="17:00" event="script" value="raids/quara.lua"/>

Lua:
function raid_quara
executeRaid("Quara")
end
  
function onTime()
	if os.date('%a'):lower() == 'mon' then
	addEvent(raid_quara, math.random(3540) * 1000, cid)
	return true
	end
end
 
Back
Top