WoR_PRC8/_module/nss/dg_min_glo_chk.nss
Jaysyn904 b5e28e52f4 Initial commit
Initial commit [1.18]
2025-04-03 11:49:34 -04:00

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;
}