• 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 per week?

I think that I fixed it:
LUA:
local storage = 1344
 
local raids = {
"Barbarian"
}
 
function onTime()
	local day = string.lower(os.date("%A"))
	if (day == "monday") then
		executeRaid(raids[math.random(1, #raids)])
	end
	return true
end
 
Back
Top