AulusCrispian.lua 1.5 KB

1234567891011121314151617181920212223242526272829303132333435
  1. --[[
  2. Script Name : SpawnScripts/Freeport/AulusCrispian.lua
  3. Script Author : Premierio015
  4. Script Date : 2020.07.19 02:07:29
  5. Script Purpose :
  6. :
  7. --]]
  8. function spawn(NPC)
  9. end
  10. function hailed(NPC, Spawn)
  11. FaceTarget(NPC, Spawn)
  12. conversation = CreateConversation()
  13. PlayFlavor(NPC, "voiceover/english/alchemist_aulus_crispian/fprt_north/mer_auluscrispian.mp3", "", "", 3874372728, 2977782311, Spawn)
  14. AddConversationOption(conversation, "These herbs are not my cup of tea. I think I will look elsewhere.")
  15. AddConversationOption(conversation, "Do you know how to handle them properly?", "dlg01")
  16. StartConversation(conversation, NPC, Spawn, "Welcome to Torlig's Herbs and Potions. I sell many magicial reagents and herbs. But, I warn you, you must possess amazing skill to handle them properly.")
  17. end
  18. function dlg01(NPC, Spawn)
  19. FaceTarget(NPC, Spawn)
  20. conversation = CreateConversation()
  21. PlayFlavor(NPC, "voiceover/english/alchemist_aulus_crispian/fprt_north/mer_auluscrispian000.mp3", "", "", 2154034769, 640127952, Spawn)
  22. AddConversationOption(conversation, "Okay.")
  23. StartConversation(conversation, NPC, Spawn, "Of course I do. I'm very knowledgeable in the ways of magic. Why, if it wasn't for those instructors at the Academy denying my admission, I'd be on my way to becoming a famous arch mage! That fire was not my fault!")
  24. end
  25. function respawn(NPC)
  26. end