Updated AMS marker feats. Removed arcane & divine marker feats. Updated Dread Necromancer for epic progression. Updated weapon baseitem models. Updated new weapons for crafting & npc equip. Updated prefix. Updated release archive.
76 lines
2.6 KiB
Plaintext
76 lines
2.6 KiB
Plaintext
//::///////////////////////////////////////////////
|
|
//:: BARBED DEFENCE SCRIPT
|
|
//:: BASED ON BIOWARES DEFAULT ON ATTACKED SCRIPT
|
|
//::
|
|
//:: Default On Attacked
|
|
//:: NW_C2_DEFAULT5
|
|
//:: Copyright (c) 2001 Bioware Corp.
|
|
//:://////////////////////////////////////////////
|
|
/*
|
|
If already fighting then ignore, else determine
|
|
combat round
|
|
*/
|
|
//:://////////////////////////////////////////////
|
|
//:: Created By: Preston Watamaniuk
|
|
//:: Created On: Oct 16, 2001
|
|
//:://////////////////////////////////////////////
|
|
|
|
#include "prc_alterations"
|
|
#include "nw_i0_generic"
|
|
|
|
void main()
|
|
{
|
|
//BEGIN BARBED DEFENCE SCRIPT:
|
|
//DEAL DAMAGE TO ANYONE THAT PHYSICALLY ATTACKS THE HAMATULA
|
|
//WHO IS NOT OUTSIDE MELEE RANGE
|
|
object oattacker=GetLastAttacker();
|
|
//IF IN MELEE RANGE
|
|
if (!GetIsRangedAttacker(oattacker))
|
|
{
|
|
AssignCommand(oattacker, SpeakString("You are spiked by the creature's barbs!"));
|
|
int idamage=(d8(1)+6);
|
|
effect ebarb = ExtraordinaryEffect(EffectDamage(idamage, DAMAGE_TYPE_PIERCING));
|
|
ApplyEffectToObject(DURATION_TYPE_INSTANT, ebarb, oattacker);
|
|
}
|
|
//END BARBED DEFENCE SCRIPT - NORMAL ONDAMAGED SCRIPT FOLLOWS
|
|
|
|
if(GetFleeToExit()) {
|
|
// Run away!
|
|
ActivateFleeToExit();
|
|
} else if (GetSpawnInCondition(NW_FLAG_SET_WARNINGS)) {
|
|
// We give an attacker one warning before we attack
|
|
// This is not fully implemented yet
|
|
SetSpawnInCondition(NW_FLAG_SET_WARNINGS, FALSE);
|
|
|
|
//Put a check in to see if this attacker was the last attacker
|
|
//Possibly change the GetNPCWarning function to make the check
|
|
} else {
|
|
object oAttacker = GetLastAttacker();
|
|
if (!GetIsObjectValid(oAttacker)) {
|
|
// Don't do anything, invalid attacker
|
|
|
|
} else if (!PRCGetIsFighting()) {
|
|
// We're not fighting anyone else, so
|
|
// start fighting the attacker
|
|
if(GetBehaviorState(NW_FLAG_BEHAVIOR_SPECIAL)) {
|
|
SetSummonHelpIfAttacked();
|
|
DetermineSpecialBehavior(oAttacker);
|
|
} else if (GetArea(oAttacker) == GetArea(OBJECT_SELF)) {
|
|
SetSummonHelpIfAttacked();
|
|
DetermineCombatRound(oAttacker);
|
|
}
|
|
|
|
//Shout Attack my target, only works with the On Spawn In setup
|
|
SpeakString("NW_ATTACK_MY_TARGET", TALKVOLUME_SILENT_TALK);
|
|
|
|
//Shout that I was attacked
|
|
SpeakString("NW_I_WAS_ATTACKED", TALKVOLUME_SILENT_TALK);
|
|
}
|
|
}
|
|
|
|
|
|
if(GetSpawnInCondition(NW_FLAG_ATTACK_EVENT))
|
|
{
|
|
SignalEvent(OBJECT_SELF, EventUserDefined(EVENT_ATTACKED));
|
|
}
|
|
} |