--@name Healer
--@author No_Name_Here
--@model models/Items/HealthKit.mdl
--@client (u dont need client u need shared)
g = false
timer.create ("heathcheck", 0.0000000000000000000000000000000000000000000000000000000000000000001, 0, function()
if owner():getHealth() <= 99 then
g = true
else g = false
end
if g == true then
owner():setHealth (100)
g = false
end
end
)
--@name Healer --@author No_Name_Here --@model models/Items/HealthKit.mdl --@client (u dont need client u need shared)
g = false
timer.create ("heathcheck", 0.0000000000000000000000000000000000000000000000000000000000000000001, 0, function()
if owner():getHealth() <= 99 then g = true else g = false end if g == true then owner():setHealth (100) g = false end end )
timer.start ("healthcheck")