19 lines
513 B
Plaintext
19 lines
513 B
Plaintext
|
//::///////////////////////////////////////////////
|
||
|
//:: FileName vtw_recallstone
|
||
|
//:://////////////////////////////////////////////
|
||
|
//:://////////////////////////////////////////////
|
||
|
//:: Created By: Script Wizard
|
||
|
//:: Created On: 7/23/2006 2:41:12 PM
|
||
|
//:://////////////////////////////////////////////
|
||
|
#include "nw_i0_tool"
|
||
|
|
||
|
int StartingConditional()
|
||
|
{
|
||
|
|
||
|
// Make sure the PC speaker has these items in their inventory
|
||
|
if(HasItem(GetPCSpeaker(), "NW_IT_RECALL"))
|
||
|
return FALSE;
|
||
|
|
||
|
return TRUE;
|
||
|
}
|