NWNDS/nwnds_module/ka_hasfirehide.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
576 B
Plaintext

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