27 lines
847 B
Plaintext
27 lines
847 B
Plaintext
|
//::///////////////////////////////////////////////
|
||
|
//:: FileName sc_171
|
||
|
//:://////////////////////////////////////////////
|
||
|
//:://////////////////////////////////////////////
|
||
|
//:: Created By: Script Wizard
|
||
|
//:: Created On: 10/31/2002 1:33:25 AM
|
||
|
//:://////////////////////////////////////////////
|
||
|
#include "nw_i0_tool"
|
||
|
|
||
|
int StartingConditional()
|
||
|
{
|
||
|
|
||
|
// Make sure the PC speaker has these items in their inventory
|
||
|
if(!CheckPartyForItem(GetPCSpeaker(), "ElementalAir"))
|
||
|
return FALSE;
|
||
|
if(!CheckPartyForItem(GetPCSpeaker(), "ElementalEarth"))
|
||
|
return FALSE;
|
||
|
if(!CheckPartyForItem(GetPCSpeaker(), "ElementalFire"))
|
||
|
return FALSE;
|
||
|
if(!CheckPartyForItem(GetPCSpeaker(), "ElementalMagic"))
|
||
|
return FALSE;
|
||
|
if(!CheckPartyForItem(GetPCSpeaker(), "ElementalWater"))
|
||
|
return FALSE;
|
||
|
|
||
|
return TRUE;
|
||
|
}
|