Files
TheHordeOrcs_PRC8/_module/nss/0c_if_hen_target.nss
Jaysyn904 e2ef284388 2025/12/12 Update
Updated PEPS
Hooked up module GUI event for spell effect manager.
Updated nim tools.
Full compile.
2025-12-12 14:33:30 -05:00

17 lines
763 B
Plaintext

/*//////////////////////////////////////////////////////////////////////////////
Script: 0c_if_assoc_mode
Programmer: Philos
////////////////////////////////////////////////////////////////////////////////
Text Appears When script that checks to see the ally targets have been set for
this number target.
nTarget (INT) : 0 = ALL, 1 PC, 2 Caster, 3-6 = oPC's Henchman, 7 = PC's Familiar
8 = PC's Animal Companion, 9 = PC's Summon.
Param:
nTarget - The target to check and see if they are set.
*///////////////////////////////////////////////////////////////////////////////
int StartingConditional()
{
string sTarget = GetScriptParam("nTarget");
return GetIsObjectValid(GetLocalObject(OBJECT_SELF, "AI_ALLY_TARGET_" + sTarget));
}