PRC8_fork/trunk/epicspellscripts/sc_has_loreskill.nss
Jaysyn904 1662218bb4 Initial upload.
Adding base PRC 4.19a files to repository.
2022-10-07 13:51:24 -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;
}