19 lines
502 B
Plaintext
19 lines
502 B
Plaintext
|
//::///////////////////////////////////////////////
|
||
|
//:: FileName ia_haskey
|
||
|
//:://////////////////////////////////////////////
|
||
|
//:://////////////////////////////////////////////
|
||
|
//:: Created By: Script Wizard
|
||
|
//:: Created On: 11/7/2004 6:10:05 PM
|
||
|
//:://////////////////////////////////////////////
|
||
|
#include "nw_i0_tool"
|
||
|
|
||
|
int StartingConditional()
|
||
|
{
|
||
|
|
||
|
// Make sure the PC speaker has these items in their inventory
|
||
|
if(!HasItem(GetPCSpeaker(), "IA_Key"))
|
||
|
return FALSE;
|
||
|
|
||
|
return TRUE;
|
||
|
}
|