CharlesArker.lua 595 B

1234567891011121314151617181920212223
  1. --[[
  2. Script Name : SpawnScripts/OutpostOverlord/CharlesArker.lua
  3. Script Author : Cynnar
  4. Script Date : 2018.10.14 07:10:58
  5. Script Purpose :
  6. :
  7. --]]
  8. function spawn(NPC)
  9. end
  10. function hailed(NPC, Spawn)
  11. conversation = CreateConversation()
  12. AddConversationOption(conversation, "Release the mole rat.", "ReleaseRat")
  13. AddConversationOption(conversation, "Let him be for now.")
  14. StartDialogConversation(conversation, 1, NPC, Spawn, "This cute little guy would be perfect as bait to lure down the cliffdiver hawks.")
  15. end
  16. function respawn(NPC)
  17. end