25 lines
672 B
Plaintext
25 lines
672 B
Plaintext
//::///////////////////////////////////////////////
|
|
//:: FileName aw_runecheck
|
|
//:://////////////////////////////////////////////
|
|
//:://////////////////////////////////////////////
|
|
//:: Created By: Script Wizard
|
|
//:: Created On: 11/27/2003 12:00:23 PM
|
|
//:://////////////////////////////////////////////
|
|
#include "nw_i0_tool"
|
|
|
|
int StartingConditional()
|
|
{
|
|
|
|
// Make sure the PC speaker has these items in their inventory
|
|
if(!HasItem(GetPCSpeaker(), "AWRUNE001"))
|
|
return FALSE;
|
|
if(!HasItem(GetPCSpeaker(), "AWRUNE002"))
|
|
return FALSE;
|
|
if(!HasItem(GetPCSpeaker(), "AWRUNE003"))
|
|
return FALSE;
|
|
if(!HasItem(GetPCSpeaker(), "AWRUNE004"))
|
|
return FALSE;
|
|
|
|
return TRUE;
|
|
}
|