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

Pull Lever To Start Raid.

uber uber shit
just got talkaction and put onuse i know wont work just some edits
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 onuse
	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
 
Ok I have got no idear what to do im a noob to .xml and .lua can some one make me an example using
Raid Name-(Ratraid), Lever Postion-(x=1118 y=1125 z=7) and Lever action id/unique id-(5000/8001)
once I have that and where to but each code I can work out rest for my self...
Thanks In Advance And Rep ++ For those who help :)
 
Back
Top