123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- --[[
- Script Name : SpawnScripts/QueensColony/anaveragesparringpartner1584829.lua
- Script Author : Rylec, premierio015, Emagi
- Script Date : 2020.11.15 08:11:43
- Script Purpose :
- :
- --]]
- local TheArtOfCombat = 132
- function spawn(NPC)
- end
-
-
- function healthchanged(NPC, Spawn, Damage)
- local npc_hp = GetHP(NPC)
- if Damage >= npc_hp then
- AddTimer(NPC, 1000, "stop_combat", 1, Spawn)
- Say(NPC, "Well Done.")
- Say(NPC, "Next!")
- if GetQuestStep(Spawn, TheArtOfCombat) == 2 then
- SetStepComplete(Spawn, TheArtOfCombat, 2)
- end
- SetHP(NPC, GetMaxHP(NPC))
- return -1 -- DIPLOMATIC immunity!!
- end
- return 0 -- use default Damage passed in
- end
- function stop_combat(NPC, Spawn)
- if IsInCombat(NPC) then
- ClearHate(NPC, Spawn)
- SetInCombat(NPC, false)
- SetInCombat(Spawn, false)
- ClearEncounter(NPC)
- end
- end
- function death(NPC, Spawn)
- if GetQuestStep(Spawn, TheArtOfCombat) == 2 then
- SetStepComplete(Spawn, TheArtOfCombat, 2)
- end
- end
- function hailed(NPC, Spawn)
- FaceTarget(NPC, Spawn)
- local voice = math.random (1,3)
- PlayFlavor(NPC, "voiceover/english/voice_emotes/greetings/greetings_"..voice.."_1002.mp3", "You can attack me whenever you're ready. You can do that by double-clicking me, by right clicking me and selecting 'attack,' by using an offensive ability while you have me targeted, or by turning on auto attack by pressing the ~ key while you have me targeted.", "", 0, 0, Spawn)
- end
- function respawn(NPC)
- spawn(NPC)
- end
|