Forum
CS2D Scripts Hit commandHit command
5 replies 1
1
parse('hit '..id..' 0')
Like that/
Play the sound to everyone:
1
parse("sv_sound <hit sound>")
Play the sound to only one person:
1
parse("sv_sound2 <hit sound>")
1
2
3
2
3
function hit(id) 	parse("sv_sound2 "..id.." <hit sound>") end
something like that?
but I don't have any idea how to light up healthbar
1