WoR_PRC8/_module/nss/taer_quest_item.nss

29 lines
869 B
Plaintext
Raw Permalink Normal View History

2025-04-03 11:49:34 -04:00
//::///////////////////////////////////////////////
//:: 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;
}