23 lines
541 B
Plaintext
23 lines
541 B
Plaintext
//::///////////////////////////////////////////////
|
|
//:: FileName chkkebanonkey
|
|
//:://////////////////////////////////////////////
|
|
//:://////////////////////////////////////////////
|
|
//:: Created By: Script Wizard
|
|
//:: Created On: 10/9/2002 3:11:38 PM
|
|
//:://////////////////////////////////////////////
|
|
#include "nw_i0_tool"
|
|
|
|
int StartingConditional()
|
|
{
|
|
//Player has Kebanon Gate Key
|
|
if (GetIsObjectValid(GetItemPossessedBy(GetPCSpeaker(),"KebanonGateKey")))
|
|
{
|
|
return TRUE;
|
|
}
|
|
else
|
|
{
|
|
return FALSE;
|
|
}
|
|
|
|
}
|