BiddyBobick.lua 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. --[[
  2. Script Name : SpawnScripts/EnchantedLands/BiddyBobick.lua
  3. Script Purpose : Biddy Bobick
  4. Script Author : Cynnar
  5. Script Date : 2015.02.17
  6. Script Notes : Auto-Generated Conversation from PacketParser Data
  7. --]]
  8. function spawn(NPC)
  9. end
  10. function respawn(NPC)
  11. spawn(NPC)
  12. end
  13. function hailed(NPC, Spawn)
  14. FaceTarget(NPC, Spawn)
  15. conversation = CreateConversation()
  16. PlayFlavor(NPC, "voiceover/english/biddy_bobick/enchanted/biddy_bobick000.mp3", "", "cry", 1953488725, 856940273, Spawn)
  17. AddConversationOption(conversation, "At ease halfling! I am no pirate! ", "dlg_0_1")
  18. AddConversationOption(conversation, "You're in no condition to talk. Farewell.")
  19. StartConversation(conversation, NPC, Spawn, "Please spare me, good pirate! Spare me! Take everything! Take everything! Just leave me my life ... my life and ... and ... maybe a fishing pole. My life and a fishing pole. And ... and ... maybe some bait... Ya can't fish without bait!! Spare me! Spare me!")
  20. end
  21. function dlg_0_1(NPC, Spawn)
  22. FaceTarget(NPC, Spawn)
  23. conversation = CreateConversation()
  24. PlayFlavor(NPC, "voiceover/english/biddy_bobick/enchanted/biddy_bobick001.mp3", "", "", 2271087281, 754687626, Spawn)
  25. AddConversationOption(conversation, "Save you from what? ", "dlg_0_2")
  26. AddConversationOption(conversation, "I will do what I can. Now I must go.")
  27. StartConversation(conversation, NPC, Spawn, "Do my halfling eyes deceive me? Brell's toes! A ship without skulls and crossed swords! Welcome! Welcome to Bobick's Boats and the Enchanted Lands. We've been praying to Brell for a ship to save us!")
  28. end
  29. function dlg_0_2(NPC, Spawn)
  30. FaceTarget(NPC, Spawn)
  31. conversation = CreateConversation()
  32. PlayFlavor(NPC, "voiceover/english/biddy_bobick/enchanted/biddy_bobick002.mp3", "", "", 2563393725, 4253211022, Spawn)
  33. AddConversationOption(conversation, "I shall heed your warning and explore this land. Be safe. ", "dlg_7_3")
  34. StartConversation(conversation, NPC, Spawn, "Danger surrounds us here ... deep in what was once the Misty Thicket. Horrid goblins and beasts infest the land. Should you walk the trails and beyond you'll find them. Be wise, my friend. Travel in a group. That's what we survivors do. And sometimes not even that will save you.")
  35. end
  36. function dlg_1_1(NPC, Spawn)
  37. FaceTarget(NPC, Spawn)
  38. conversation = CreateConversation()
  39. PlayFlavor(NPC, "voiceover/english/biddy_bobick/enchanted/biddy_bobick003.mp3", "", "", 1607211097, 1962573681, Spawn)
  40. AddConversationOption(conversation, "Glad to see you doing well Biddy. ", "dlg_22_1")
  41. StartConversation(conversation, NPC, Spawn, "Welcome back to Bobick's Boats, my friend! Neither shattered moons nor beasts from beyond can keep a Bobick out of business.")
  42. end