HwalRucksif.lua 648 B

12345678910111213141516171819202122232425
  1. --[[
  2. Script Name : SpawnScripts/Antonica/HwalRucksif.lua
  3. Script Author : Premierio015
  4. Script Date : 2021.06.26 07:06:22
  5. Script Purpose :
  6. :
  7. --]]
  8. function spawn(NPC)
  9. end
  10. function hailed(NPC, Spawn)
  11. FaceTarget(NPC, Spawn)
  12. SetPlayerProximityFunction(NPC, 15, "InRange", "", Spawn)
  13. end
  14. function InRange(NPC, Spawn)
  15. PlayFlavor(NPC, "voiceover/english/hwal_rucksif/antonica/quest/quest_hwal_rucksif_callout_30d20c93.mp3", "Ho, there! You wouldn't mind helping out a hard working dwarf, would ya?", "hello", 596769271, 2784563151, Spawn)
  16. end
  17. function respawn(NPC)
  18. spawn(NPC)
  19. end