Well, what I'm trying to do is just as the title says.
I'm trying to get a player that isn't a bot, get health regeneration
1
2
3
4
5
6
7
8
9
10
2
3
4
5
6
7
8
9
10
playerRegen = 1 addhook("second","healsystem") function healsystem() 	for id=1,32 do 		if player(id,"bot") == false then 			parse("sethealth "..id.." "..player(id,"health").. + playerRegen) 		end 	end end
I've tried doing it in other ways; failed.
So I'm asking here if someone can help me with this, since I can't get my head around this.