CaptainVertas.lua 963 B

123456789101112131415161718192021222324252627282930
  1. --[[
  2. Script Name : SpawnScripts/Commonlands/CaptainVertas.lua
  3. Script Author : Premierio015
  4. Script Date : 2021.01.03 01:01:54
  5. Script Purpose :
  6. :
  7. --]]
  8. local FinishingtheNegotiations = 425
  9. function spawn(NPC)
  10. end
  11. function hailed(NPC, Spawn)
  12. FaceTarget(NPC, Spawn)
  13. PlayFlavor(NPC, "voiceover/english/voice_emotes/greetings/greetings_3_1004.mp3", "", "", 0, 0, Spawn)
  14. if GetQuestStep(Spawn, FinishingtheNegotiations) == 1 then
  15. SetStepComplete(Spawn, FinishingtheNegotiations, 1)
  16. end
  17. conversation = CreateConversation()
  18. AddConversationOption(conversation, "What does the job pay?")
  19. AddConversationOption(conversation, "No, I don't have time right now.")
  20. StartConversation(conversation, NPC, Spawn, "Pah, the orcs and the dervish... Listen, the Freeport Militia requires your help. Will you do a service for the Militia?")
  21. end
  22. function respawn(NPC)
  23. end