ID:178483
 
mob/verb/Meditate()
islocked = 1
usr.meditate()

mob/proc/meditate()
sleep(100)
usr <<"You feel stronger"
usr.strength += 10
usr.meditate()

mob/verb/Stop_Meditate()
islocked = 0
//How would i make it stop the Meditation proc? with ..()?
or with return?