TanenDanos.lua 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. --[[
  2. Script Name : SpawnScripts/Antonica/TanenDanos.lua
  3. Script Author : Premierio015
  4. Script Date : 2021.09.05 03:09:23
  5. Script Purpose :
  6. :
  7. --]]
  8. function spawn(NPC)
  9. end
  10. function hailed(NPC, Spawn)
  11. FaceTarget(NPC, Spawn)
  12. local conversation = CreateConversation()
  13. AddConversationOption(conversation, "Who is Clan McMarrin?", "Option1")
  14. AddConversationOption(conversation, "I'll take a look at what you have on tap.")
  15. StartConversation(conversation, NPC, Spawn, "Hello there, adventurer. You must be a mite weary from your travels. Relax and have a drink of my personal brew. Barbarians brew the hardiest ales you'll ever put to your lips. You ever hear of ol' Clan McMarrin's \"Blizzard Warmer?\" That'll keep you going on those cold wintry nights!")
  16. end
  17. function Option1(NPC, Spawn)
  18. FaceTarget(NPC, Spawn)
  19. local conversation = CreateConversation()
  20. AddConversationOption(conversation, "I'll keep an eye out for them if I am out in that area.", "Option2")
  21. AddConversationOption(conversation, "I hope they have found a place to settle.")
  22. StartConversation(conversation, NPC, Spawn, "Clan McMarrin was a clan of the toughest barbarian warriors to have called dear old Halas home. They have not been heard of for some time though. After the Shattering they set out to find a place that barbarians could live as they did in Halas. Word was they were looking toward the Thundering Steppes last anyone knew.")
  23. end
  24. function Option2(NPC, Spawn)
  25. FaceTarget(NPC, Spawn)
  26. local conversation = CreateConversation()
  27. AddConversationOption(conversation, "I can understand that.")
  28. StartConversation(conversation, NPC, Spawn, "You would? Aye, that is good to hear. I like Qeynos and all, but us barbarians need a place we can call our own, you know?")
  29. end
  30. function respawn(NPC)
  31. spawn(NPC)
  32. end