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

Help with script

misael26

New Member
Joined
Oct 25, 2010
Messages
11
Reaction score
1
Location
mexico
hello in general do not usually help, but I have a question there if I can help, I'm doing a script each time a certain amount of monsters summonea, but not how to do that every 3 minutes Begins another round of monsters, not if I can help, thanks in advance and sorry for the english google translator :p :D
 
simple idea
Lua:
local time = 3 * 60

function newRound()
	-- create your monsters
	addEvent(newRound,time*1000)
end

function onSay(cid,param)
	newRound()
	return true
end
 
Back
Top