Files
HeroesStone_PRC8/_module/nss/x2_d2_s_lessersb.nss
Jaysyn904 1eefc84201 Initial Commit
Initial Commit.
2025-09-14 15:40:46 -04:00

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;
}