NWNDS/nwnds_module/sc_chkclocticket.nss

19 lines
536 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(), "ClockworkIslandTicket"))
return FALSE;
return TRUE;
}