NWNDS/nwnds_module/sc_chkcromticket.nss

19 lines
519 B
Plaintext
Raw Normal View History

//::///////////////////////////////////////////////
//:: FileName sc_chkcromticket
//:://////////////////////////////////////////////
//:://////////////////////////////////////////////
//:: Created By: Script Wizard
//:: Created On: 10/17/2002 11:39:26 PM
//:://////////////////////////////////////////////
#include "nw_i0_tool"
int StartingConditional()
{
// Make sure the PC speaker has these items in their inventory
if(!CheckPartyForItem(GetPCSpeaker(), "CromlinIslandTicket"))
return FALSE;
return TRUE;
}