Area Changes and other fixes
added areas and ccoh, fixed some areas to work with crafting fixed some on death issues added server entry/ooc
This commit is contained in:
@@ -1,55 +0,0 @@
|
||||
#include "wereondam"
|
||||
#include "NW_I0_GENERIC"
|
||||
|
||||
void main()
|
||||
{
|
||||
//SpeakString("Im attacked.");
|
||||
|
||||
// Werewolf Silver Damage Addon
|
||||
WereDamagedSilver();
|
||||
|
||||
if(!GetFleeToExit())
|
||||
{
|
||||
if(!GetSpawnInCondition(NW_FLAG_SET_WARNINGS))
|
||||
{
|
||||
if(!GetIsObjectValid(GetAttemptedAttackTarget()) && !GetIsObjectValid(GetAttemptedSpellTarget()))
|
||||
{
|
||||
if(GetIsObjectValid(GetLastAttacker()))
|
||||
{
|
||||
if(GetBehaviorState(NW_FLAG_BEHAVIOR_SPECIAL))
|
||||
{
|
||||
//AdjustReputation(GetLastAttacker(), OBJECT_SELF, -100);
|
||||
SetSummonHelpIfAttacked();
|
||||
DetermineSpecialBehavior(GetLastAttacker());
|
||||
}
|
||||
else
|
||||
{
|
||||
if(GetArea(GetLastAttacker()) == GetArea(OBJECT_SELF))
|
||||
{
|
||||
SetSummonHelpIfAttacked();
|
||||
DetermineCombatRound();
|
||||
}
|
||||
}
|
||||
//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);
|
||||
}
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
//Put a check in to see if this attacker was the last attacker
|
||||
//Possibly change the GetNPCWarning function to make the check
|
||||
SetSpawnInCondition(NW_FLAG_SET_WARNINGS, FALSE);
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
ActivateFleeToExit();
|
||||
}
|
||||
if(GetSpawnInCondition(NW_FLAG_ATTACK_EVENT))
|
||||
{
|
||||
SignalEvent(OBJECT_SELF, EventUserDefined(1005));
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user