kito2
www.masteria.net
Hi, it is possible to make that the raids execute one day at week?
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