ArbuthnotJumroller.lua 598 B

12345678910111213141516171819202122232425
  1. --[[
  2. Script Name : SpawnScripts/Baubbleshire/ArbuthnotJumroller.lua
  3. Script Purpose : Arbuthnot Jumroller
  4. Script Author : Scatman
  5. Script Date : 2009.09.27
  6. Script Notes :
  7. --]]
  8. dofile("SpawnScripts/Generic/GenericVoiceOvers.lua")
  9. function spawn(NPC)
  10. end
  11. function respawn(NPC)
  12. spawn(NPC)
  13. end
  14. function hailed(NPC, Spawn)
  15. FaceTarget(NPC, Spawn)
  16. conversation = CreateConversation()
  17. GenericHail(NPC, Spawn)
  18. AddConversationOption(conversation, "Thanks, but I need to leave now.")
  19. StartConversation(conversation, NPC, Spawn, "Well, then, what can I do for you?")
  20. end