19 lines
513 B
Plaintext
19 lines
513 B
Plaintext
//::///////////////////////////////////////////////
|
|
//:: FileName ke_if_traveller
|
|
//:://////////////////////////////////////////////
|
|
//:://////////////////////////////////////////////
|
|
//:: Created By: Script Wizard
|
|
//:: Created On: 02-07-2007 21:26:19
|
|
//:://////////////////////////////////////////////
|
|
#include "nw_i0_tool"
|
|
|
|
int StartingConditional()
|
|
{
|
|
|
|
// Make sure the PC speaker has these items in their inventory
|
|
if(!HasItem(GetPCSpeaker(), "stat_token_5"))
|
|
return FALSE;
|
|
|
|
return TRUE;
|
|
}
|