Find
You are looking at a command called meditate
meditate
This command cannot be used unless you are sitting.
It causes you to regain mana over time.
Created by
thorn
, last updated 26 Dec 2008
Code
if $init_obj's hosthow == 'sitting on' then meditate2 else mustsit;
##meditate2:
say 'meditate',"[$init_obj] begins to meditate.";
set $init_obj's pose to 'meditating';
$mat = $init_obj's material;
swap $mat add _meditation_;
set $init_obj's material to $mat;
relook $loc;
##mustsit:
sayto $init_obj,"You must be sitting to meditate.";