Is it possible to make that ur hp goes -5 ewery 1,50min and displays a message : U will die
Forum
Scripts
lower health ewery min
lower health ewery min
5 replies
1

Is it possible to make that ur hp goes -5 ewery 1,50min and displays a message : U will die
1
2
3
4
5
6
7
8
9
10
11
12
2
3
4
5
6
7
8
9
10
11
12
sec=0
addhook("second","lol")
function lol()
	sec = sec+1 -- count up
	if sec==90 then -- 60 sec= 1min. 30sec=0,50min
		sec=0
		for _, all in ipairs(player(0,"tableliving")) do
			parse("sethealth "..all.." "..player(all,"health")-5) -- Set energie -5
			msg2(all,"©255000000U will die ;)") -- The msg
		end
	end
end
1

Offline