NWNDS/nwnds_module/ds_checkforskull.nss
Jaysyn904 de24f81734 Added NWN Dark Sun module contents
Added NWN Dark Sun module contents.
2021-07-12 21:24:46 -04:00

31 lines
740 B
Plaintext

//::///////////////////////////////////////////////
//:: FileName ds_checkforskull
//:://////////////////////////////////////////////
//:://////////////////////////////////////////////
//:: Created By: Script Wizard
//:: Created On: 7/29/02 4:07:48 PM
//:://////////////////////////////////////////////
int GetNumItems(object oTarget,string sItem)
{
int nNumItems = 0;
object oItem = GetFirstItemInInventory(oTarget);
while (GetIsObjectValid(oItem) == TRUE)
{
if (GetTag(oItem) == sItem)
{
nNumItems = nNumItems + GetNumStackedItems(oItem);
}
oItem = GetNextItemInInventory(oTarget);
}
return nNumItems;
}
int StartingConditional()
{
object oPC = GetPCSpeaker();
if (GetNumItems(oPC, "CRFT_GIANTSKULL") < 1) return FALSE;
return TRUE;
}