LoD_PRC8/_module/nss/lcs_trch_cond.nss
Jaysyn904 94990edc60 Initial Upload
Initial Upload
2023-09-21 21:20:34 -04:00

26 lines
425 B
Plaintext

int StartingConditional()
{
int iResult;
object oItem = GetItemInSlot(INVENTORY_SLOT_LEFTHAND);
iResult = GetIsObjectValid(oItem);
if(iResult)
{
int nBaseItemType = GetBaseItemType(oItem);
if(nBaseItemType == BASE_ITEM_TORCH)
{
return iResult;
}
else
{
return FALSE;
}
}
else
{
return iResult;
}
}