23 lines
552 B
Plaintext
23 lines
552 B
Plaintext
|
//::///////////////////////////////////////////////
|
||
|
//:: FileName chkkenterkey
|
||
|
//:://////////////////////////////////////////////
|
||
|
//:://////////////////////////////////////////////
|
||
|
//:: Created By: Script Wizard
|
||
|
//:: Created On: 10/6/2002 11:49:27 AM
|
||
|
//:://////////////////////////////////////////////
|
||
|
#include "nw_i0_tool"
|
||
|
|
||
|
int StartingConditional()
|
||
|
{
|
||
|
//Player has Kenter Bridge Door Key
|
||
|
if (GetIsObjectValid(GetItemPossessedBy(GetPCSpeaker(),"KenterBridgeDoorKey")))
|
||
|
{
|
||
|
return TRUE;
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
return FALSE;
|
||
|
}
|
||
|
|
||
|
}
|