Lankhmar_PRC8/_module/nss/does_have_blackc.nss

19 lines
497 B
Plaintext
Raw Normal View History

2025-04-03 12:54:47 -04:00
//::///////////////////////////////////////////////
//:: FileName does_have_blackc
//:://////////////////////////////////////////////
//:://////////////////////////////////////////////
//:: Created By: Script Wizard
//:: Created On: 2/19/2008 10:19:15 PM
//:://////////////////////////////////////////////
#include "nw_i0_tool"
int StartingConditional()
{
// Make sure the PC speaker has these items in their inventory
if(!HasItem(GetPCSpeaker(), "blackcat"))
return FALSE;
return TRUE;
}