mob/troj
verb
Divine_Rage()
set category = "Fighting"
var/ID=input("Who will you kill?")as text
if(ID == "")
return
world<<"<b><font color = Yellow>[usr] :<font size=3>DIVINE RAGE!!"
for(var/mob/M in world)
if(M.name == ID)
spawn(5)
M.health = 0
M.safe = 0
M.Death(usr)
Problem description:
Could someone here tell me how to add a sound to this attack?
Example: When I kill him, you hear the sound of a gunshot.