17 lines
607 B
Plaintext
17 lines
607 B
Plaintext
|
//::///////////////////////////////////////////////
|
||
|
//:: FileName di_at_02
|
||
|
//:://////////////////////////////////////////////
|
||
|
//:://////////////////////////////////////////////
|
||
|
//:: Created By: Script Wizard
|
||
|
//:: Created On: 4/4/2004 12:44:01 AM
|
||
|
//:://////////////////////////////////////////////
|
||
|
#include "nw_i0_generic"
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectHeal(GetMaxHitPoints(OBJECT_SELF)), OBJECT_SELF);
|
||
|
// Set the faction to hate the player, then attack the player
|
||
|
AdjustReputation(GetPCSpeaker(), OBJECT_SELF, -100);
|
||
|
DetermineCombatRound(GetPCSpeaker());
|
||
|
}
|