Fehuziom has written
I have one question:
How to make image in x position and y position of player (This image cant move(Floor Image))?
How to make image in x position and y position of player (This image cant move(Floor Image))?
1
2
3
4
2
3
4
local x,y = player(id,"x"),player(id,"y") mode = 0 -- Floor Mode path = "gfx/..." -- Dont remove the "" image(path,x,y,mode)
@Time4Parteh
1
2
3
4
5
6
7
8
9
10
11
2
3
4
5
6
7
8
9
10
11
healing = 5 -- how mutch it should heal addhook("second","lol") function lol() 	for id = 1,32 do 		if (player(id,"exists")) then 			if (player(id,"health")>0) then 				parse("sethealth "..id.." "..(player(id,"health") + healing)) 			end 		end 	end end