KarrieClayton.lua 792 B

12345678910111213141516171819202122232425
  1. --[[
  2. Script Name : SpawnScripts/Nettleville/KarrieClayton.lua
  3. Script Purpose : Karrie Clayton
  4. Script Author : Scatman
  5. Script Date : 2009.08.08
  6. Script Notes :
  7. --]]
  8. function spawn(NPC)
  9. --AddVisualStateLoop(NPC, 2, 10, 11298)
  10. --AddVisualStateLoop(NPC, 2, 10, 11557)
  11. end
  12. function respawn(NPC)
  13. spawn(NPC)
  14. end
  15. function hailed(NPC, Spawn)
  16. FaceTarget(NPC, Spawn)
  17. conversation = CreateConversation()
  18. PlayFlavor(NPC, "voiceover/english/karrie_clayton/qey_village01/karrieclayton.mp3", "", "", 1984155043, 1707628406, Spawn)
  19. AddConversationOption(conversation, "I'm sorry. Excuse me for interrupting your performance.")
  20. StartConversation(conversation, NPC, Spawn, "Oh my! Yet another overzealous admirer. Please wait till after the show for autographs.")
  21. end