ID:147994
 
mob
spells
verb
Heal_LV1(mob/Mo in oview(3))
if(usr.MP>=7)
usr.MP-=7
//shoot a fireball towards M
var/damage=rand(5,10)
usr<<"You Heal [Mo] for [damage]"
Mo<<"[usr]'s Heal spell heals you for [damage]!"
Mo.HP+=damage
if(usr.HP > usr.MAX_HP)
usr.HP = usr.MAX_HP
Mo.DeathCheck()
else usr<<"You do not have enough MP!"

how do i get it so you can heal other can your self by selecting which one you want to heal
Have you tried using just view instead of oview

personaly I'd use

view(3, src)

-Salarn