Amon_PRC8/_removed/hench/nw_ch_commelee.nss
Jaysyn904 c5cffc37af Initial Commit
Initial Commit [v1.01]
2025-04-03 19:00:46 -04:00

22 lines
579 B
Plaintext

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