NWNDS/nwnds_module/havehide2.nss

23 lines
516 B
Plaintext
Raw Normal View History

//::///////////////////////////////////////////////
//:: 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;
}