MarliaSafefoot.lua 903 B

123456789101112131415161718192021222324
  1. --[[
  2. Script Name : SpawnScripts/FallenGate/MarliaSafefoot.lua
  3. Script Author : Premierio015
  4. Script Date : 2021.07.07 09:07:57
  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. PlayFlavor(NPC, "voiceover/english/voice_emotes/greetings/greetings_3_1005.mp3", "", "", 0, 0, Spawn)
  14. AddConversationOption(conversation, "I hope the zombies rip the flesh from your bones, the only good Halfling is on an open spit.")
  15. AddConversationOption(conversation, "Just stay here where you are safe until I can get you some help.")
  16. StartConversation(conversation, NPC, Spawn, "Oh, thank you for rescuing me! I've been stuck here for days, these zombies won't let me leave, please, please help me out of here!")
  17. end
  18. function respawn(NPC)
  19. spawn(NPC)
  20. end