29 lines
869 B
Plaintext
29 lines
869 B
Plaintext
//::///////////////////////////////////////////////
|
|
//:: FileName taer_quest_item
|
|
//:://////////////////////////////////////////////
|
|
//:://////////////////////////////////////////////
|
|
//:: Created By: Script Wizard
|
|
//:: Created On: 9/12/2004 2:02:30 PM
|
|
//:://////////////////////////////////////////////
|
|
#include "nw_i0_tool"
|
|
|
|
int StartingConditional()
|
|
{
|
|
|
|
// Make sure the PC speaker has these items in their inventory
|
|
if(!HasItem(GetPCSpeaker(), "BrokenRing"))
|
|
return FALSE;
|
|
if(!HasItem(GetPCSpeaker(), "BrokenRing001"))
|
|
return FALSE;
|
|
if(!HasItem(GetPCSpeaker(), "BrokenRing002"))
|
|
return FALSE;
|
|
if(!HasItem(GetPCSpeaker(), "BrokenRing003"))
|
|
return FALSE;
|
|
if(!HasItem(GetPCSpeaker(), "CaraecHeart"))
|
|
return FALSE;
|
|
if(!HasItem(GetPCSpeaker(), "CenterofRune"))
|
|
return FALSE;
|
|
|
|
return TRUE;
|
|
}
|