https://youtu.be/s_KCXLD__GU
I tried this but it still instakill if you have less health than the damage of explosion.
1
2
3
4
5
6
7
8
9
2
3
4
5
6
7
8
9
addhook("hit","_hit") function _hit(id,source,weapon,hpdmg,apdmg) local hp = player(id,"health") if weapon == 73 then if hpdmg > 4 then timer(0,"parse","sethealth "..id.." "..hp) end end end