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

TFS Raid System

Frozen_Cloud

New Member
Joined
Oct 10, 2010
Messages
57
Reaction score
1
Anybody know how to bring tfs raid system to work automaticly? like every 5 h there will be spawning a boss or so?

i'll pay for help.
 
i've also finished all the raids like on global tibia, with broadcasts and time gaps.
and i want it for example like this:
rat raid executes every 12 h
raid barbarians execute every 24 h

for now, i've make something like this and im stuck :/
Code:
local raids = {
	"ratthais",
	"barbarian"
}
 
function onThink(interval, lastExecution, thinkInterval)
		executeRaid(raids[math.random(1, #raids)])
	return TRUE
end
 
In raids.xml Set interval2 to the time u want between raids in minutes. Set all raids to enabled="yes".
 
Back
Top