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 ..()?
ID:178483
May 6 2002, 12:45 am
|
|
May 6 2002, 12:48 am
|
|
or with return?
|