//:://///////////////////////////////////////////// //:: NW_C2_DIMDOOR.nss //:: Copyright (c) 2001 Bioware Corp. //::////////////////////////////////////////////// /* Creature randomly hops around to enemies during combat. */ //::////////////////////////////////////////////// //:: Created By: Brent //:: Created On: January 2002 //::////////////////////////////////////////////// #include "NW_I0_GENERIC" #include "jw_privates_inc" void JumpToWeakestEnemy(object oTarget) { SetVictim(OBJECT_INVALID); object oTargetVictim = ChooseTarget(); // * won't jump if closer than 4 meters to victim if ((GetDistanceToObject(oTargetVictim) > 4.0) && (GetObjectSeen(oTargetVictim) == TRUE)) { ClearAllActions(); effect eVis = EffectVisualEffect(VFX_FNF_GAS_EXPLOSION_EVIL); ApplyEffectToObject(DURATION_TYPE_INSTANT, eVis, OBJECT_SELF); // SpeakString("Jump to " + GetName(oTargetVictim)); DelayCommand(0.5, ApplyEffectToObject(DURATION_TYPE_INSTANT, eVis, OBJECT_SELF)); DelayCommand(0.3,ActionJumpToObject(oTargetVictim)); //DelayCommand(0.5,ActionAttack(oTargetVictim)); } } void main() { ExecuteScript("prc_npc_userdef", OBJECT_SELF); // * During Combat try teleporting around if (GetUserDefinedEventNumber() == 1003) { // * if random OR heavily wounded then teleport to next enemy if ((Random(100) < 80)) { JumpToWeakestEnemy(GetNearestCreature(CREATURE_TYPE_REPUTATION, REPUTATION_TYPE_ENEMY)); } } else if(GetUserDefinedEventNumber() == 1007) // DEATH { //int nRandom=Random(11)+1; //CreateItemOnObject("jw_newtok"+IntToString(nRandom),OBJECT_SELF,1); ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_SCREEN_SHAKE), OBJECT_SELF); ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_COM_CHUNK_YELLOW_MEDIUM), OBJECT_SELF); ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_COM_BLOOD_LRG_YELLOW), OBJECT_SELF); } }