PeregrineHelgrethIceweaver.lua 514 B

1234567891011121314151617181920212223
  1. --[[
  2. Script Name : SpawnScripts/FrostfangSea/PeregrineHelgrethIceweaver.lua
  3. Script Purpose : Padraig McDougal <Ravens of the North Merchant>
  4. Script Author : theFoof
  5. Script Date : 2013.09.26
  6. Script Notes :
  7. --]]
  8. require"SpawnScripts/FrostfangSea/halas_proximity_cheer"
  9. function spawn(NPC)
  10. SetPlayerProximityFunction(NPC, 15, "ProxCheer")
  11. end
  12. function respawn(NPC)
  13. spawn(NPC)
  14. end
  15. function hailed(NPC, Spawn)
  16. FaceTarget(NPC, Spawn)
  17. PlayFlavor(NPC, "", "", "hello",0, 0, Spawn)
  18. end