Add files via upload

This commit is contained in:
Dinkledork
2023-03-24 04:58:13 -06:00
committed by GitHub
parent 40528eceed
commit 6c2034ef6f
4 changed files with 6 additions and 6 deletions

View File

@@ -7,11 +7,11 @@ local SPELL_GOUGE = 12540
local SPELL_CAST_DEATH = 5
local function CastSinisterStrike(eventId, delay, calls, creature)
creature:CastSpell(creature:GetVictim(), SPELL_SINISTER_STRIKE, false)
creature:CastSpell(creature:GetVictim(), SPELL_SINISTER_STRIKE, true)
end
local function CastGouge(eventId, delay, calls, creature)
creature:CastSpell(creature:GetVictim(), SPELL_GOUGE, false)
creature:CastSpell(creature:GetVictim(), SPELL_GOUGE, true)
end
local function CastSpellOnTarget(creature, targetNPC)

View File

@@ -1,7 +1,7 @@
local NPC_BANSHEE = 400112
local NPC_TARGET = 3338
local SPELL_BANSHEE_SCREAM = 41150
local SPELL_BANSHEE_SCREAM = 8124
local SPELL_SHADOW_BOLT = 9613
local SPELL_CAST_DEATH = 5

View File

@@ -12,7 +12,7 @@ local function HordeGuard_OnEnterCombat(event, creature, target)
end
local function HordeGuard_OnLeaveCombat(event, creature)
creature:RemoveEvents() -- Remove events when leaving combat
creature:RemoveEvents()
creature:EmoteState(375)
end

View File

@@ -34,11 +34,11 @@ local function Sutures_OnEnterCombat(event, creature, target)
end
local function Sutures_OnLeaveCombat(event, creature)
creature:RemoveEvents() -- Remove events when leaving combat
creature:RemoveEvents()
end
local function Sutures_OnDied(event, creature, killer)
creature:RemoveEvents() -- Remove events when died
creature:RemoveEvents()
creature:SendUnitSay("Sutures...fall...", 0)
end