WoR_PRC8/_module/nss/sc_illthidq.nss
Jaysyn904 b5e28e52f4 Initial commit
Initial commit [1.18]
2025-04-03 11:49:34 -04:00

23 lines
743 B
Plaintext

//::///////////////////////////////////////////////
//:: FileName sc_illthidq
//:://////////////////////////////////////////////
//:://////////////////////////////////////////////
//:: Created By: Shayan
//:: Created On: 10/8/2004 12:44:06 PM
//:://////////////////////////////////////////////
#include "nw_i0_tool"
int StartingConditional()
{
// Make sure the PC speaker has these items in their inventory
if(HasItem(GetPCSpeaker(), "sha_illthid_qbook") || HasItem(GetPCSpeaker(), "sha_illthid_qitem1") || HasItem(GetPCSpeaker(), "sha_illthid_qitem2") || HasItem(GetPCSpeaker(), "sha_illthid_qitem3") || HasItem(GetPCSpeaker(), "sha_illthid_qitem4"))
{
return TRUE;
}
else
{
return FALSE;
}
}