ID:167984
 
how would i code in a spell to hit all monsters in my view?
mob
verb
Spell()
view(7,src) << "[src] casts a spell!"
for(var/mob/Monster/M in oview(7,src))
M.HP -= 1 // Change this

In response to Sniper Joe
thanks, ill try that
In response to Sniper Joe
thanks alot it works!