18 lines
452 B
Plaintext
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;
|
||
|
}
|
||
|
|