Alangara_PRC8/_module/nss/ke_ulveryt_doed.nss
Jaysyn904 86feb9ca6f Initial commit
Initial commit.
2024-06-05 21:21:06 -04:00

61 lines
1.8 KiB
Plaintext

//::///////////////////////////////////////////////
//:: Default:On Death
//:: NW_C2_DEFAULT7
//:: Copyright (c) 2001 Bioware Corp.
//:://////////////////////////////////////////////
/*
Shouts to allies that they have been killed
*/
//:://////////////////////////////////////////////
//:: Created By: Preston Watamaniuk
//:: Created On: Oct 25, 2001
//:://////////////////////////////////////////////
#include "NW_I0_GENERIC"
void main()
{
ExecuteScript("pwfxp",OBJECT_SELF);
int nClass = GetLevelByClass(CLASS_TYPE_COMMONER);
int nAlign = GetAlignmentGoodEvil(OBJECT_SELF);
if(nClass > 0 && (nAlign == ALIGNMENT_GOOD || nAlign == ALIGNMENT_NEUTRAL))
{
object oKiller = GetLastKiller();
AdjustAlignment(oKiller, ALIGNMENT_EVIL, 5);
}
SpeakString("NW_I_AM_DEAD", TALKVOLUME_SILENT_TALK);
//Shout Attack my target, only works with the On Spawn In setup
SpeakString("NW_ATTACK_MY_TARGET", TALKVOLUME_SILENT_TALK);
if(GetSpawnInCondition(NW_FLAG_DEATH_EVENT))
{
SignalEvent(OBJECT_SELF, EventUserDefined(1007));
}
////////////////////////////////
// Goblin Worg Rider stuff
/////////////////////////////////
// Get position and facing of Worg and set spawn point for the Goblin
vector vWorg = GetPosition(OBJECT_SELF);
float fAngle = GetFacing(OBJECT_SELF);
location lGoblin;
vector vChange;
object oArea = GetArea(OBJECT_SELF);
vChange.x = cos(fAngle) * 1.0;
lGoblin = Location(oArea, vWorg+vChange, fAngle);
// Spawn the goblin because the worg has died
effect eKnockdwn = ExtraordinaryEffect(EffectKnockdown());
object oSpawn = CreateObject(OBJECT_TYPE_CREATURE,"ulvegoblinkriger",lGoblin,FALSE);
ApplyEffectToObject(DURATION_TYPE_TEMPORARY, eKnockdwn, oSpawn, 2.0);
ExecuteScript("prc_npc_death", OBJECT_SELF);
}