
So..
Server message every half minute!
Its possible?
Thanks in advance!
secs = 0 addhook("second","autotext") function autotext() 	secs = secs + 1 	if secs >= 30 then -- 1/2 a minute = 30 seconds, so yeah. 		msg("Test") -- Replace with whatever you like 		secs = 0 	end end
secs = 0 addhook("second","autotext") function autotext() 	secs = secs + 1 	if secs >= 30 then -- 1/2 a minute = 30 seconds, so yeah. 		msg("Test") -- Replace with whatever you like 		secs = 0 	end end