mob
proc
DEATH(mob/M)
if(src.type == /mob/PC)
MOBSDeath()
else
if(src.vit <= 0)
usr.exp += src.exp
range() << "[src] >>wass slain by [usr]."
usr.gold += src.gold
usr.exp += src.exp
sleep(1)
Del(M)
..()
MOBSDeath(mob/PC)
if(src.vit <= 0)
world<< "[src] died."
src.loc = locate(7,45,1)
src.vit = src.vit_m
else
return
Any ides why? If you want to tweek it, thanks
That should fix it, change Del(M) to Del(src). If that doesnt work try del(src). I am not certain it will fix it but I think it will.
The Conjuror
By the way, this belongs under Code Problems.