Amon_PRC8/_removed/hench/nw_ch_commelee.nss

22 lines
579 B
Plaintext
Raw Permalink Normal View History

2025-04-03 19:00:46 -04:00
//::///////////////////////////////////////////////
//:: Determine Combat Range Preference
//:: nw_ch_commelee
//:: Copyright (c) 2001 Bioware Corp.
//:://////////////////////////////////////////////
/*
Checks if the Henchmen is in Melee Mode.
*/
//:://////////////////////////////////////////////
//:: Created By: Preston Watamaniuk
//:: Created On: April 5, 2002
//:://////////////////////////////////////////////
#include "nw_i0_generic"
int StartingConditional()
{
if(!GetAssociateState(NW_ASC_USE_RANGED_WEAPON))
{
return TRUE;
}
return FALSE;
}