19 lines
503 B
Plaintext
19 lines
503 B
Plaintext
//::///////////////////////////////////////////////
|
|
//:: FileName zm_checkring
|
|
//:://////////////////////////////////////////////
|
|
//:://////////////////////////////////////////////
|
|
//:: Created By: Script Wizard
|
|
//:: Created On: 7/9/2002 5:00:12 AM
|
|
//:://////////////////////////////////////////////
|
|
#include "nw_i0_tool"
|
|
|
|
int StartingConditional()
|
|
{
|
|
|
|
// Make sure the PC speaker has these items in their inventory
|
|
if(!CheckPartyForItem(GetPCSpeaker(), "dragonring"))
|
|
return FALSE;
|
|
|
|
return TRUE;
|
|
}
|