apiratefirstmate.lua 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. --[[
  2. Script Name : SpawnScripts/QeynosHarbor/apiratefirstmate.lua
  3. Script Purpose : a pirate first mate <Pirates of Gunthak>
  4. Script Author : Cynnar
  5. Script Date : 2020.04.12
  6. Script Notes : Auto-Generated Conversation from PacketParser Data
  7. --]]
  8. function spawn(NPC)
  9. SetPlayerProximityFunction(NPC, 10, "InRange", "LeaveRange")
  10. end
  11. function respawn(NPC)
  12. spawn(NPC)
  13. end
  14. function InRange(NPC, Spawn)
  15. end
  16. function LeaveRange(NPC, Spawn)
  17. end
  18. function hailed(NPC, Spawn)
  19. FaceTarget(NPC, Spawn)
  20. conversation = CreateConversation()
  21. PlayFlavor(NPC, "voiceover/english/voice_emotes/greetings/greetings_1_1060.mp3", "", "", 0, 0, Spawn)
  22. AddConversationOption(conversation, "Can I help?", "dlg_29_1")
  23. AddConversationOption(conversation, "I don't like the cut of your jib. ")
  24. StartConversation(conversation, NPC, Spawn, "Avast, what in the name of the bosun's black beard are you doing? How are we going to skewer them out there if you're wasting time here? The standoff in the Smuggler's Den isn't going to resolve itself.")
  25. if convo==30 then
  26. PlayFlavor(NPC, "voiceover/english/voice_emotes/greetings/greetings_2_1060.mp3", "", "", 0, 0, Spawn)
  27. AddConversationOption(conversation, "Can I help?", "dlg_30_1")
  28. AddConversationOption(conversation, "I don't like the cut of your jib. ")
  29. StartConversation(conversation, NPC, Spawn, "Avast, what in the name of the bosun's black beard are you doing? How are we going to skewer them out there if you're wasting time here? The standoff in the Smuggler's Den isn't going to resolve itself.")
  30. end
  31. if convo==31 then
  32. PlayFlavor(NPC, "voiceover/english/voice_emotes/greetings/greetings_1_1060.mp3", "", "", 0, 0, Spawn)
  33. AddConversationOption(conversation, "Can I help?", "dlg_31_1")
  34. AddConversationOption(conversation, "I don't like the cut of your jib. ")
  35. StartConversation(conversation, NPC, Spawn, "Avast, what in the name of the bosun's black beard are you doing? How are we going to skewer them out there if you're wasting time here? The standoff in the Smuggler's Den isn't going to resolve itself.")
  36. end
  37. end