generated from Jaysyn/ModuleTemplate
21 lines
522 B
Plaintext
21 lines
522 B
Plaintext
//::///////////////////////////////////////////////
|
|
//:: Copyright (c) 2003 Bioware Corp.
|
|
//:://////////////////////////////////////////////
|
|
/*
|
|
Check to see if the PC has SPELL_LESSER_SPELL_MANTLE
|
|
memorized...
|
|
*/
|
|
//:://////////////////////////////////////////////
|
|
//:: Created By: Brent
|
|
//:: Created On: June 2003
|
|
//:://////////////////////////////////////////////
|
|
|
|
int StartingConditional()
|
|
{
|
|
if (GetHasSpell(
|
|
SPELL_LESSER_SPELL_BREACH
|
|
, GetPCSpeaker()) > 0)
|
|
return TRUE;
|
|
return FALSE;
|
|
}
|