regen health please...
Scripts
regen health? lua
regen health? lua
1

addhook("second","second")
function second()
	for _, id in pairs(player(0, "tableliving")) do
		parse("sethealth "..id.." "..(player(id,"health") + 1))
	end
end
interval = 250 --time in milliseconds between each health regen
amount = 2 --amount of health regenerated each regen
function customTimer()
	regen()
	timer(interval, 'customTimer')
end
customTimer()
function regen()
	for _,id in pairs(player(0, 'tableliving')) do
		parse('sethealth '..id..' '..(player(id, 'health') + amount)
	end
end
Alistaire has better script. Use that and it is better and easy to customize.
1
