23 lines
629 B
Plaintext
23 lines
629 B
Plaintext
//::///////////////////////////////////////////////
|
|
//:: FileName dg_min_glo_chk
|
|
//:://////////////////////////////////////////////
|
|
//:://////////////////////////////////////////////
|
|
//:: Created By: Script Wizard
|
|
//:: Created On: 6/04/2005 9:28:41 PM
|
|
//:://////////////////////////////////////////////
|
|
#include "nw_i0_tool"
|
|
|
|
int StartingConditional()
|
|
{
|
|
|
|
// Make sure the PC speaker has these items in their inventory
|
|
if(!HasItem(GetPCSpeaker(), "dg_smith_gloves"))
|
|
return FALSE;
|
|
|
|
// Inspect local variables
|
|
if(!(GetLocalInt(GetPCSpeaker(), "var_dg_helm") == 0))
|
|
return FALSE;
|
|
|
|
return TRUE;
|
|
}
|