RebikSprocketrock.lua 723 B

1234567891011121314151617181920212223
  1. --[[
  2. Script Name : SpawnScripts/Baubbleshire/RebikSprocketrock.lua
  3. Script Purpose : Rebik Sprocketrock
  4. Script Author : Scatman
  5. Script Date : 2009.09.27
  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/rebik_sprocketrock/qey_village06/rebiksprocketrock000.mp3", "", "", 2926752471, 973291816, Spawn)
  17. AddConversationOption(conversation, "Well then, I guess I'll let you get back to your work.")
  18. StartConversation(conversation, NPC, Spawn, "Well met, good friend! I'm busy working on this new lock here! I think it'll be unpickable once I'm done!")
  19. end