ZitoGraban.lua 774 B

12345678910111213141516171819202122
  1. --[[
  2. Script Name : SpawnScripts/OutpostOverlord/ZitoGraban.lua
  3. Script Purpose : Zito Graban
  4. Script Author : John Adams
  5. Script Date : 2008.09.23
  6. Script Notes : Auto-Generated Conversation from PacketParser Data
  7. --]]
  8. function hailed(NPC, Spawn)
  9. FaceTarget(NPC, Spawn)
  10. choice = math.random(1,3)
  11. if choice == 1 then
  12. PlayFlavor(NPC, "", "You've got to be deviant to survive in Freeport.", "", 1689589577, 4560189, Spawn)
  13. elseif choice == 2 then
  14. PlayFlavor(NPC, "voiceover/english/voice_emotes/greetings/greetings_3_1032.mp3", "I plan on joining a guild when I leave the outpost.", "", 0, 0, Spawn)
  15. else
  16. PlayFlavor(NPC, "", "I've almost completed my shell collection to turn in to Gethe Huggs.", "", 1689589577, 4560189, Spawn)
  17. end
  18. end