28 lines
841 B
Plaintext
28 lines
841 B
Plaintext
//::///////////////////////////////////////////////
|
|
//:: FileName aw_finalessence
|
|
//:://////////////////////////////////////////////
|
|
//:://////////////////////////////////////////////
|
|
//:: Created By: Script Wizard
|
|
//:: Created On: 11/12/2003 5:32:09 PM
|
|
//:://////////////////////////////////////////////
|
|
#include "nw_i0_tool"
|
|
|
|
int StartingConditional()
|
|
{
|
|
|
|
// Make sure the PC speaker has these items in their inventory
|
|
|
|
if(!HasItem(GetPCSpeaker(), "TheShifterBroken"))
|
|
return FALSE;
|
|
if(!HasItem(GetPCSpeaker(), "EssenceofMagicalEnergy"))
|
|
return FALSE;
|
|
if(!HasItem(GetPCSpeaker(), "EssenceoftheDivine"))
|
|
return FALSE;
|
|
if(!HasItem(GetPCSpeaker(), "EssenceoftheLowerRealms"))
|
|
return FALSE;
|
|
if(!HasItem(GetPCSpeaker(), "EssenceofthePureSpirit"))
|
|
return FALSE;
|
|
|
|
return TRUE;
|
|
}
|