Files
RoT2_PRC8/src/module/nss/cb_chk_scrollals.nss
Jaysyn904 ab2fc1d732 Added PEPS AI
Added PEPS AI.
Full compile.
Reorganized repository.
2025-07-28 12:49:34 -04:00

14 lines
308 B
Plaintext

int StartingConditional()
{
object oPC = GetPCSpeaker();
if (GetItemPossessedBy(oPC, "SCROLLOFEVIL") == OBJECT_INVALID) return FALSE;
if (GetItemPossessedBy(oPC, "SCROLLOFNEUTRAL") == OBJECT_INVALID) return FALSE;
if (GetItemPossessedBy(oPC, "HOLYSERUM") == OBJECT_INVALID) return FALSE;
return TRUE;
}