DeathCheck()
if(istype(src,/mob/))
if(src.PL <= 0)
src.PL = src.MaxPL
src.overlays += 'halo.dmi'
src.dead = 1
src.Update(src)
src.grav=0
else
if(src == usr)
world << "<font size = 1><font color = green><B>Event: </b>[src] Killed himself."
oview(3) << "<I><font color = red>[src] dies right infront of you.."
else
world << "<font size = 1><font color = green><B>Event: </b>[src] was killed by [usr]."
oview(3) << "<I><font color = red>[src] dies right infront of you.."
src.loc = locate(27,2,3)
src.MaxPL+=src.Strength
src.Level()
src.Techcheck()
i need to add a death msg If grav = 1 usr was crushed by grav how would i add that into the msgs i already have?
All my atempts have failed