meditation skill
Posted: Fri Oct 14, 2005 12:45 pm
from skills.c:meditate() :
ok, but how do you level up your meditation skill ? i've tried to meditate in front of a gob, but he was not impressed 
Code: Select all
if (( (tmp->type==ARMOUR && skill->level<12)
|| (tmp->type==HELMET && skill->level<10)
|| (tmp->type==SHIELD && skill->level<6)
|| (tmp->type==BOOTS && skill->level<4)
|| (tmp->type==GLOVES && skill->level<2) )
&& QUERY_FLAG(tmp,FLAG_APPLIED)) {
new_draw_info(NDI_UNIQUE,0,pl,
"You can't concentrate while wearing so much armour!\n");
return;
}
