19 lines
492 B
Plaintext
19 lines
492 B
Plaintext
//::///////////////////////////////////////////////
|
|
//:: FileName has_pqquest2
|
|
//:://////////////////////////////////////////////
|
|
//:://////////////////////////////////////////////
|
|
//:: Created By: Script Wizard
|
|
//:: Created On: 1/31/2004 7:53:04 PM
|
|
//:://////////////////////////////////////////////
|
|
#include "nw_i0_tool"
|
|
|
|
int StartingConditional()
|
|
{
|
|
|
|
// Make sure the PC speaker has these items in their inventory
|
|
if(!HasItem(GetPCSpeaker(), "PQQUEST2"))
|
|
return FALSE;
|
|
|
|
return TRUE;
|
|
}
|