RrakBoldfist.lua 650 B

1234567891011121314151617181920212223
  1. --[[
  2. Script Name : SpawnScripts/Castleview/RrakBoldfist.lua
  3. Script Purpose : Rrak Boldfist
  4. Script Author : Scatman
  5. Script Date : 2009.10.03
  6. Script Notes :
  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/rrak_boldfist/qey_village04/newbie_path_froglok/rrakboldfist001.mp3", "", "", 4249735014, 1158423101)
  17. AddConversationOption(conversation, "Very well, kind sir. Thank you.")
  18. StartConversation(conversation, NPC, Spawn, "Greetings! Fare thee well?")
  19. end