ID:264208
 
Code:
mob
proc
Age()
for() //loop this action
usr.age += 0.1 // add .01 to the age of
sleep(10)//wait for 60
if (age > 39 && prob(age/5))
world << "[src] has died at age: [age]!"
src << "You died at age: [age]."
src.DeleteChar()
del(usr)
if(usr.age > 149)
world << "[src] has died at age: [age]!"
src << "You died at age: [age]."
src.DeleteChar()
del(usr)


Problem description: it keeps going on for ever and no dieing..........

Look up for() and what it DOES.
In response to Andre-g1
Actually that for() he used is valid in DM, it creates an infinite loop... but I doubt he wants that there heh
In response to GhostAnime
That's what I meant <_<

The code never passes the for() statement so a person never dies.