LiegeHelvanica.lua 720 B

1234567891011121314151617181920212223242526
  1. --[[
  2. Script Name : SpawnScripts/Freeport/LiegeHelvanica.lua
  3. Script Author : Premierio015
  4. Script Date : 2020.08.07 08:08:59
  5. Script Purpose :
  6. :
  7. --]]
  8. function spawn(NPC)
  9. end
  10. function hailed(NPC, Spawn)
  11. FaceTarget(NPC, Spawn)
  12. PlayFlavor(NPC, "voiceover/english/liege_helvanica/fprt_west/100_soc_human_militia_helvanica_no_5a6d5fb9.mp3", "Hail, fool. Have the poorhouses overflowed out into the streets? The militia has no time for vagrants! Get out of my sight!", "", 3239214506, 3877091290, Spawn)
  13. end
  14. function respawn(NPC)
  15. end
  16. function targeted(NPC, Spawn)
  17. if GetDistance(Spawn, NPC) < 10 then
  18. hailed(NPC, Spawn)
  19. end
  20. end