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

19 lines
512 B
Plaintext

//::///////////////////////////////////////////////
//:: FileName sc_haslongbow
//:://////////////////////////////////////////////
//:://////////////////////////////////////////////
//:: Created By: Script Wizard
//:: Created On: 8/1/02 2:42:07 PM
//:://////////////////////////////////////////////
#include "nw_i0_tool"
int StartingConditional()
{
object oItemToTake;
oItemToTake = GetItemPossessedBy(GetPCSpeaker(), "NW_WBWLN001");
if(GetIsObjectValid(oItemToTake) != 0)
return TRUE;
return FALSE;
}