21 lines
572 B
Plaintext
21 lines
572 B
Plaintext
|
//::///////////////////////////////////////////////
|
||
|
//:: Set To Ranged Only
|
||
|
//:: nw_ch_goranged
|
||
|
//:: Copyright (c) 2001 Bioware Corp.
|
||
|
//:://////////////////////////////////////////////
|
||
|
/*
|
||
|
Makes the henchmen go to ranged combat.
|
||
|
*/
|
||
|
//:://////////////////////////////////////////////
|
||
|
//:: Created By: Preston Watamaniuk
|
||
|
//:: Created On: April 5th, 2002
|
||
|
//:://////////////////////////////////////////////
|
||
|
#include "hench_i0_equip"
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
SetAssociateState(NW_ASC_USE_RANGED_WEAPON);
|
||
|
ClearWeaponStates();
|
||
|
HenchEquipDefaultWeapons(OBJECT_SELF, TRUE);
|
||
|
}
|