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

25 lines
573 B
Plaintext

//::///////////////////////////////////////////////
//:: FileName ka_hasrainhide
/*
Detects the presence of a rain drake hide
*/
//:://////////////////////////////////////////////
//:://////////////////////////////////////////////
//:: Created By: Kiriani Agriviar
//:: Created On:
//:://////////////////////////////////////////////
#include "nw_i0_tool"
int StartingConditional()
{
object oItemToTake;
oItemToTake = GetItemPossessedBy(GetPCSpeaker(), "crft_rain_dr_hd");
if(GetIsObjectValid(oItemToTake) != 0)
return TRUE;
// else
return FALSE;
}