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

28 lines
579 B
Plaintext

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