NWNDS/nwn_dark_sun/sc_hasspidersack.nss
Jaysyn904 b01c5cc7db Added PnP Dire Rat.
Added PnP Dire Rat.
2021-07-21 17:48:43 -04:00

18 lines
452 B
Plaintext

//::///////////////////////////////////////////////
//:: FileName sc_hasspidersack
//:://////////////////////////////////////////////
//:://////////////////////////////////////////////
//:: Created By: DM Heatstroke
//:: Created On: June 03 2012
//:://////////////////////////////////////////////
int StartingConditional()
{
object oPC = GetPCSpeaker();
if (GetItemPossessedBy(oPC, "CRFT_SPIDERSAC") == OBJECT_INVALID) return FALSE;
return TRUE;
}