WizardryEE/Notes/trunk/epicspellscripts/sc_has_loreskill.nss
2025-04-30 12:23:15 -04:00

14 lines
291 B
Plaintext

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