SarbithPlegnog.lua 672 B

123456789101112131415161718192021222324
  1. --[[
  2. Script Name : SpawnScripts/QeynosHarbor/SarbithPlegnog.lua
  3. Script Author : Dorbin
  4. Script Date : 2022.04.16 12:04:54
  5. Script Purpose : Associated with The Broken Pen from ToS. https://eq2.fandom.com/wiki/The_Broken_Pen
  6. :
  7. --]]
  8. function spawn(NPC)
  9. end
  10. function respawn(NPC)
  11. spawn(NPC)
  12. end
  13. function hailed(NPC, Spawn)
  14. RandomGreeting(NPC, Spawn)
  15. end
  16. function RandomGreeting(NPC, Spawn)
  17. PlayFlavor(NPC, "voiceover/english/voice_emotes/greetings/greetings_3_1005.mp3", "Isn't the Ak'Anon Clock beautiful! Certainly it should be admired for its genius and complexity.", "orate", 0, 0, Spawn, 0)
  18. end