35hp
]]--
addhook("spawn" , "hegrenade")
function hegrenade(id,player)
if (player(id,"score")>10) then parse("equip "..id.." 51 ")
end
end
what is my mistake?
Scripts
Why it does not works
Why it does not works
1

addhook("spawn","_Spawn")
function _Spawn(id)
if player(id,"score") >10 then
	parse("equip "..id.." 51")
	end
end
addhook("spawn" , "hegrenade")
function hegrenade(id)
if player(id,"score") > 10 then
		parse("equip "..id.." 51")
	end
end
return "51"
Avo: It depends of something, if you have more than a "spawn" hook it might not work.
1
