First answer will get a
General
Exploding snowball
Exploding snowball
1

First answer will get a
function explosion(x, y, size, damage)
	parse("explosion "..x.." "..y.." "..size.." "..damage)
end
addhook("projectile","my_projectile")
function my_projectile(id,weapon,x,y)
if(weapon == 75) then --snowball
explosion(x,y,300, 300) -- size + damage = 300
end
end



1
