19 lines
498 B
Plaintext
19 lines
498 B
Plaintext
|
//::///////////////////////////////////////////////
|
||
|
//:: FileName ds_hv_hlnslvrmd
|
||
|
//:://////////////////////////////////////////////
|
||
|
//:://////////////////////////////////////////////
|
||
|
//:: Created By: Script Wizard
|
||
|
//:: Created On: 10/18/2009 10:42:24 AM
|
||
|
//:://////////////////////////////////////////////
|
||
|
#include "nw_i0_tool"
|
||
|
|
||
|
int StartingConditional()
|
||
|
{
|
||
|
|
||
|
// Make sure the PC speaker has these items in their inventory
|
||
|
if(!HasItem(GetPCSpeaker(), "hlnslvrmd"))
|
||
|
return FALSE;
|
||
|
|
||
|
return TRUE;
|
||
|
}
|