23 lines
590 B
Plaintext
23 lines
590 B
Plaintext
//::///////////////////////////////////////////////
|
|
//:: FileName sc_051
|
|
//:://////////////////////////////////////////////
|
|
//:://////////////////////////////////////////////
|
|
//:: Created By: Script Wizard
|
|
//:: Created On: 4/5/2003 2:12:26 AM
|
|
//:://////////////////////////////////////////////
|
|
#include "nw_i0_tool"
|
|
|
|
int StartingConditional()
|
|
{
|
|
|
|
// Make sure the PC speaker has these items in their inventory
|
|
if(!HasItem(GetPCSpeaker(), "towersword"))
|
|
return FALSE;
|
|
|
|
// Inspect local variables
|
|
if(!(GetLocalInt(GetPCSpeaker(), "elfjoinedonce") == 0))
|
|
return FALSE;
|
|
|
|
return TRUE;
|
|
}
|