Initial Upload
Initial Upload
This commit is contained in:
14
_module/nss/rh_death.nss
Normal file
14
_module/nss/rh_death.nss
Normal file
@@ -0,0 +1,14 @@
|
||||
void main()
|
||||
{
|
||||
object oPC = GetLastKiller();
|
||||
object oTarget = GetWaypointByTag("wp_rh_outside");
|
||||
location lTarget = GetLocation(oTarget);
|
||||
effect eVis = EffectVisualEffect(VFX_FNF_ELECTRIC_EXPLOSION);
|
||||
|
||||
//if (!GetIsPC(oPC)) return;
|
||||
|
||||
AssignCommand(oPC, ClearAllActions());
|
||||
ApplyEffectAtLocation(DURATION_TYPE_INSTANT,eVis, GetLocation(oPC));
|
||||
AssignCommand(oPC, ActionWait(2.0));
|
||||
AssignCommand(oPC, ActionJumpToLocation(lTarget));
|
||||
}
|
Reference in New Issue
Block a user