EN6_PRC8/_module/nss/nw_c2_stnkbtdie.nss
Jaysyn904 a6f6db7303 Initial commit
Initial commit.  Updated release archive.
2024-06-13 15:08:33 -04:00

29 lines
811 B
Plaintext

//::///////////////////////////////////////////////
//:: Stink Beetle OnDeath Event
//:: Copyright (c) 2002 Bioware Corp.
//:://////////////////////////////////////////////
/*
Releases the Stink Beetle's Stinking Cloud
special ability OnDeath.
*/
//:://////////////////////////////////////////////
//:: Created By: Andrew
//:: Created On: Jan 2002
//:://////////////////////////////////////////////
void main()
{
//Declare major variables
effect eAOE = EffectAreaOfEffect(AOE_MOB_TYRANT_FOG,"NW_S1_Stink_A");
location lTarget = GetLocation(OBJECT_SELF);
//Create the AOE object at the selected location
ApplyEffectAtLocation(DURATION_TYPE_TEMPORARY, eAOE, lTarget, RoundsToSeconds(2));
ExecuteScript("en4_mobdeath",OBJECT_SELF);
ExecuteScript("prc_pwondeath",OBJECT_SELF);
}