ID:178941
 
AIDeathcheck(mob/M as mob)
if(M.Hp>=0)
M.loc=locate(1,1,1)
M.Hp=usr.MaxHp

i have no clue why this doesnt work
if some could help, please help
Thanks
AIDeathcheck(mob/M as mob)
if(M.Hp<=0)
M.loc=locate(1,1,1)
M.Hp=usr.MaxHp


< not >

Regards,
BlackDeath
Try this:
mob/proc/AIDeathcheck(mob/M as mob)
if(M.Hp<=0)
M.loc=locate(1,1,1)
M.Hp=usr.MaxHp


-Kappa the Imp
In response to Kappa the Imp
The point of that post was?
In response to Nadrew
Blackdeath's or mine?

-Kappa the Imp
In response to Kappa the Imp
The one I replied to.