HollyWindstalker.lua 846 B

12345678910111213141516171819202122232425262728293031
  1. --[[
  2. Script Name : SpawnScripts/Antonica/HollyWindstalker.lua
  3. Script Purpose : Holly Windstalker
  4. Script Author : TyroneSWG
  5. Script Date : 2019.01.15
  6. Script Notes : Auto-Generated Conversation from PacketParser Data
  7. --]]
  8. function spawn(NPC)
  9. SetPlayerProximityFunction(NPC, 10, "PlayerInRange", "PlayerLeaveRange")
  10. end
  11. function respawn(NPC)
  12. spawn(NPC)
  13. end
  14. function PlayerInRange(NPC, Spawn)
  15. FaceTarget(NPC, Spawn)
  16. PlayFlavor(NPC, "voiceover/english/optional3/ghost_human_base_1/ft/ghost/ghost_human_base_1_1_victory_gf_65116994.mp3", "One down! An eternity to go.", "", 3147020467, 1377166074, Spawn)
  17. end
  18. function PlayerLeaveRange(NPC, Spawn)
  19. FaceTarget(NPC, "Run cowards!") -- not actual line. just testing
  20. end
  21. function hailed(NPC, Spawn)
  22. FaceTarget(NPC, Spawn)
  23. Say(NPC, "Hello")
  24. end