19 lines
519 B
Plaintext
19 lines
519 B
Plaintext
//::///////////////////////////////////////////////
|
|
//:: 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;
|
|
}
|