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