Added: Reforged, Undead Redux 2, Goblin, Ogre & Orc override content. Updated appearance & placeables 2DA files to EE. Added NPC spawners for Goldeyes, Paladins, Town Guards. Added functionality to the mob randomizer.
47 lines
1.7 KiB
Plaintext
47 lines
1.7 KiB
Plaintext
//::///////////////////////////////////////////////
|
|
//:: NW_C2_DIMDOOR.nss
|
|
//:: Copyright (c) 2001 Bioware Corp.
|
|
//:://////////////////////////////////////////////
|
|
/*
|
|
Creature randomly hops around
|
|
to enemies during combat.
|
|
*/
|
|
//:://////////////////////////////////////////////
|
|
//:: Created By: Brent
|
|
//:: Created On: January 2002
|
|
//:://////////////////////////////////////////////
|
|
//:: Renamed Scorp_onuserdef 05/24/03 for Scorpions Demo v1.0
|
|
//:: Modified By Luna_C with invaluable help from Tallihnn and Allan Keliel.
|
|
//:: Be sure to use this with the scorp_spawn script in the onspawn script slot!
|
|
//:://////////////////////////////////////////////
|
|
void JumpToWeakestEnemy(object oTargetVictim)
|
|
{
|
|
object oTargetVictim = GetNearestCreature(CREATURE_TYPE_REPUTATION, REPUTATION_TYPE_ENEMY);
|
|
location lTargetVictim = GetLocation((oTargetVictim));
|
|
// * won't jump if closer than 4 meters to victim
|
|
if ((GetDistanceToObject(oTargetVictim) > 4.0) && (GetObjectSeen(oTargetVictim) == TRUE))
|
|
{
|
|
ClearAllActions();
|
|
effect eVis = EffectDisappearAppear (lTargetVictim);
|
|
int nDur=d6()+6;
|
|
|
|
DelayCommand(0.3,ApplyEffectToObject(DURATION_TYPE_TEMPORARY, eVis, OBJECT_SELF, IntToFloat(nDur)));
|
|
DelayCommand(9.0,ActionAttack(oTargetVictim));
|
|
}
|
|
}
|
|
void main()
|
|
{
|
|
// * During Combat try teleporting around
|
|
if (GetUserDefinedEventNumber() == 1003)
|
|
{
|
|
// * if random OR heavily wounded then teleport to next enemy
|
|
if ((Random(100) < 65) || ( (GetCurrentHitPoints() / GetMaxHitPoints()) * 100 < 50) )
|
|
{
|
|
JumpToWeakestEnemy(GetNearestCreature(CREATURE_TYPE_REPUTATION, REPUTATION_TYPE_ENEMY));
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
|