GatekeeperMalora.lua 842 B

123456789101112131415161718192021222324
  1. --[[
  2. Script Name : SpawnScripts/Sprawl/GatekeeperMalora.lua
  3. Script Purpose : Gatekeeper Malora <Freeport Militia>
  4. Script Author : John Adams
  5. Script Date : 2008.09.29
  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/tutorial_revamp/gatekeeper_malora/fprt_adv03_sprawl/quests/protector_malora004.mp3", "", "", 1115741315, 3103270743, Spawn)
  17. AddConversationOption(conversation, "Be well, Malora.", "dlg_1_1")
  18. StartConversation(conversation, NPC, Spawn, "It is my duty to ensure the safety of less-experienced adventurers. Someone of your skill need not worry about traveling beyond this gate.")
  19. end