ThaumaturgeFrostheart.lua 833 B

1234567891011121314151617181920212223242526
  1. --[[
  2. Script Name : SpawnScripts/Freeport/ThaumaturgeFrostheart.lua
  3. Script Author : Premierio015
  4. Script Date : 2020.07.15 06:07:21
  5. Script Purpose :
  6. :
  7. --]]
  8. function spawn(NPC)
  9. end
  10. function hailed(NPC, Spawn)
  11. FaceTarget(NPC, Spawn)
  12. local choice = math.random(1, 5)
  13. if choice == 1 then
  14. PlayFlavor(NPC, "voiceover/english/optional5/barbarian_eco_race_evil/ft/eco/evil/barbarian_eco_race_evil_hail_gf_dd0b4913.mp3", "Hah! New around these parts?", "hello", 2043369031, 2892870215, Spawn)
  15. else
  16. PlayFlavor(NPC, "voiceover/english/optional5/barbarian_eco_race_evil/ft/eco/evil/barbarian_eco_race_evil_hail_gf_431b37d1.mp3", "Watch yerself, this city can be rough.", "wink", 2960753062, 3533801971, Spawn)
  17. end
  18. end
  19. function respawn(NPC)
  20. end