LonetuskVoiceOvers.lua 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. --[[
  2. Script Name : SpawnScripts/Ruins/LonetuskVoiceOvers.lua
  3. Script Purpose : Handles voice overs for the Lonetusk.
  4. Script Author : Scatman
  5. Script Date : 2009.08.20
  6. Script Notes :
  7. --]]
  8. function generic_aggro(NPC, Spawn)
  9. local choice = math.random(1, 3)
  10. if choice == 1 then
  11. PlayFlavor(NPC, "voiceover/english/optional3/orc_lonetusk/ft/orc/orc_lonetusk_2_aggro_2d2ccd12.mp3", "Incoming! Summon the warriors.", "", 3730616476, 4212115469)
  12. elseif choice == 2 then
  13. PlayFlavor(NPC, "voiceover/english/optional3/orc_lonetusk/ft/orc/orc_lonetusk_2_aggro_478609c4.mp3", "This must be my lucky day.", "", 1552928496, 830976152)
  14. elseif choice == 3 then
  15. PlayFlavor(NPC, "voiceover/english/optional3/orc_lonetusk/ft/orc/orc_lonetusk_2_maofighter_42d206ef.mp3", "Kill the ugly one! He has the most armor!", "", 1385896447, 1033709680)
  16. end
  17. end
  18. function generic_healthchanged(NPC, Spawn)
  19. local choice = math.random(1, 2)
  20. if choice == 1 then
  21. PlayFlavor(NPC, "voiceover/english/optional3/orc_lonetusk/ft/orc/orc_lonetusk_2_battle_27011747.mp3", "Who cares if they're stronger, we're orcs!", "", 769549584, 170271605)
  22. elseif choice == 2 then
  23. PlayFlavor(NPC, "voiceover/english/optional3/orc_lonetusk/ft/orc/orc_lonetusk_2_battle_c234f7ec.mp3", "We don't need reinforcements. Attack!", "", 3931748607, 200204217)
  24. end
  25. end
  26. function generic_killed(NPC, Spawn)
  27. local choice = math.random(1, 2)
  28. if choice == 1 then
  29. PlayFlavor(NPC, "voiceover/english/optional3/orc_lonetusk/ft/orc/orc_lonetusk_2_victory_4a834d11.mp3", "I killed one?", "", 494264984, 880425961)
  30. elseif choice == 2 then
  31. PlayFlavor(NPC, "voiceover/english/optional3/orc_lonetusk/ft/orc/orc_lonetusk_2_victory_5ec9f9e2.mp3", "Keep fighting while I get these boots!", "", 1910539619, 2233613105)
  32. end
  33. end
  34. function generic_death(NPC, Spawn)
  35. PlayFlavor(NPC, "voiceover/english/optional3/orc_lonetusk/ft/orc/orc_lonetusk_2_death_937a01b8.mp3", "I can't see! Where are they?", "", 1920179873, 1406566187)
  36. end