GraacJustheart.lua 618 B

12345678910111213141516171819202122232425
  1. --[[
  2. Script Name : SpawnScripts/Castleview/GraacJustheart.lua
  3. Script Purpose : Graac Justheart
  4. Script Author : Scatman
  5. Script Date : 2009.10.02
  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. GenericHail(NPC, Spawn)
  17. conversation = CreateConversation()
  18. AddConversationOption(conversation, "And a blessing upon your house, good lady!")
  19. StartConversation(conversation, NPC, Spawn, "Mighty adventurer, I greet you with a hearty welcome! ")
  20. end