NWNDS/nwnds_module/havehide2.nss
Jaysyn904 de24f81734 Added NWN Dark Sun module contents
Added NWN Dark Sun module contents.
2021-07-12 21:24:46 -04:00

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