1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- --[[
- Script Name : SpawnScripts/ScaleYard/ZeverTzizzink.lua
- Script Purpose : Zever Tzizzink
- Script Author : torsten
- Script Date : 2022.07.25
- Script Notes : Auto-Generated Conversation from PacketParser Data
- --]]
- local PoisonousZever = 5711
- function spawn(NPC)
- ProvidesQuest(NPC, PoisonousZever)
- end
- function respawn(NPC)
- spawn(NPC)
- end
- function hailed(NPC, Spawn)
- if not HasQuest(Spawn, PoisonousZever) and not HasCompletedQuest(Spawn, PoisonousZever) then
- OfferQuest(NPC, Spawn, PoisonousZever)
- end
- if GetQuestStep(Spawn, PoisonousZever) == 2 then
- SetStepComplete(Spawn, PoisonousZever, 2)
- end
- if GetQuestStep(Spawn, PoisonousZever) == 4 then
- SetStepComplete(Spawn, PoisonousZever, 4)
- end
- RandomGreeting(NPC, Spawn)
- end
- function RandomGreeting(NPC, Spawn)
- local choice = MakeRandomInt(1,7)
- if choice == 1 then
- PlayFlavor(NPC, "voiceover/english/iksar_eco_evil_1/ft/iksar/iksar_eco_evil_1_hail_gm_65504a07.mp3", "You don't have to be cold blooded to be a killer, but it helps.", "sniff", 162591917, 1585569694, Spawn, 0)
- elseif choice == 2 then
- PlayFlavor(NPC, "voiceover/english/iksar_eco_evil_1/ft/iksar/iksar_eco_evil_1_hail_gm_e197e226.mp3", "Get the facts first, then use them to your advantage.", "nod", 2108412157, 569290229, Spawn, 0)
- elseif choice == 3 then
- PlayFlavor(NPC, "voiceover/english/iksar_eco_evil_1/ft/iksar/iksar_eco_evil_1_hail_gm_b2520f1f.mp3", "The dark elves are inferior creatures led by delusions of grandeur. How sad.", "sarcasm", 4070116108, 3546866585, Spawn, 0)
- elseif choice == 4 then
- PlayFlavor(NPC, "voiceover/english/iksar_eco_evil_1/ft/iksar/iksar_eco_evil_1_hail_gm_75d6942e.mp3", "Of course we have feelings. We're just not as attached to them as others.", "glare", 959861962, 664441611, Spawn, 0)
- elseif choice == 5 then
- PlayFlavor(NPC, "", "What do you want?", "", 0, 0, Spawn, 0)
- elseif choice == 6 then
- PlayFlavor(NPC, "voiceover/english/iksar_eco_evil_1/ft/iksar/iksar_eco_evil_1_hail_gm_6e77e856.mp3", "Hard work has never killed anyone, but I have.", "nod", 1624540059, 2182897376, Spawn, 0)
- elseif choice == 7 then
- PlayVoice(NPC, "voiceover/english/voice_emotes/greetings/greetings_1_1028.mp3", 0, 0, Spawn)
- end
- end
|