BankerBogfoot.lua 800 B

123456789101112131415161718192021222324
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/BankerBogfoot.lua
  3. Script Author : Zcoretri
  4. Script Date : 2015.07.30
  5. Script Purpose : Banker Bogfoot dialog
  6. Modified Date : 2020.08.04
  7. Modified by : premierio015
  8. Notes : Added animation
  9. --]]
  10. function spawn(NPC)
  11. end
  12. function repsawn(NPC)
  13. spawn(NPC)
  14. end
  15. function hailed(NPC, Spawn)
  16. FaceTarget(NPC, Spawn)
  17. math.randomseed(os.time())
  18. choice = math.random (1,3)
  19. PlayFlavor(NPC, "voiceover/english/voice_emotes/greetings/greetings_"..choice.."_1040.mp3", "As a banker it is my job to hold items and coin for you for safe-keeping. If you would like to learn more, speak with Trainer Zidget Sprogrudder. She is just east of me, around the corner.", "", 0, 0, Spawn)
  20. end