Shargast_PRC8/_module/Chapter 2/nss/bc_chk_clitems.nss
Jaysyn904 66a0a3e043 Initial commit
Initial commit.
2024-08-03 14:13:18 -04:00

24 lines
553 B
Plaintext

//Black Claw check clan items
//bc_chk_clitems
#include "nw_i0_tool"
int StartingConditional()
{
// Make sure the PC speaker has these items in their inventory
if(!HasItem(GetPCSpeaker(), "WhiteRoseSignet"))
return FALSE;
if(!HasItem(GetPCSpeaker(), "schippersig"))
return FALSE;
if(!HasItem(GetPCSpeaker(), "dwarfsig"))
return FALSE;
if(!HasItem(GetPCSpeaker(), "SignetoftheTemplars"))
return FALSE;
if(!HasItem(GetPCSpeaker(), "BlackKnightSignet"))
return FALSE;
return TRUE;
}