PRC8/trunk/epicspellscripts/sc_has_loreskill.nss

14 lines
291 B
Plaintext
Raw Normal View History

//::///////////////////////////////////////////////
//:: FileName sc_has_loreskill
//:://////////////////////////////////////////////
int StartingConditional()
{
// Perform skill checks
if(!(GetSkillRank(SKILL_LORE, GetPCSpeaker()) >= 0))
return FALSE;
return TRUE;
}