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

Anyone can see this script? im REP +

Stewie

Family Guy # ;3
Joined
May 3, 2010
Messages
786
Reaction score
12
Location
TV
see this script dont make random raids,only morgaroths,and i wanna make a random anyone can help me PLS im rep

LUA:
local storage = 1344
local raids = {
	"Morgaroth",
	"Ghazbaran",
	"Undead Jester",
	"goblin",
	"Dryads",
	"Halloweenhare",
	"Hornedfox",
	"Necropharus",
	"Wolfsraid",
	"UndeadArmy",
	"UndeadDarashia",
	"The Old Widow",
	"Scarabs",
	"Rats",
	"Quara",
	"Pirates",
	"Orshabaal",
	"OrcsThais",
	"Ferumbras",
	"Elfs",
	"Demodras",
	"Barbarian"
}

function onThink(interval, lastExecution, thinkInterval)
	if getGlobalStorageValue(storage) == -1 or getGlobalStorageValue(storage) < os.time() then
		executeRaid(raids[math.random(1, #raids)])
		setGlobalStorageValue(storage, os.time() + 9 * 60 * 60)
	end
	return TRUE
end
 
Back
Top