23 lines
516 B
Plaintext
23 lines
516 B
Plaintext
//::///////////////////////////////////////////////
|
|
//:: FileName havehide2
|
|
//:://////////////////////////////////////////////
|
|
//:://////////////////////////////////////////////
|
|
//:: Created By: Script Wizard
|
|
//:: Created On: 8/8/02 4:01:17 PM
|
|
//:://////////////////////////////////////////////
|
|
|
|
|
|
#include "nw_i0_tool"
|
|
|
|
int StartingConditional()
|
|
{
|
|
object oItemToTake;
|
|
oItemToTake = GetItemPossessedBy(GetPCSpeaker(), "AirDrakeHide");
|
|
if(GetIsObjectValid(oItemToTake) != 0)
|
|
return TRUE;
|
|
// else
|
|
return FALSE;
|
|
}
|
|
|
|
|