ElgornBirchgrove.lua 668 B

123456789101112131415161718192021
  1. --[[
  2. Script Name : SpawnScripts/ElddarGrove/ElgornBirchgrove.lua
  3. Script Purpose : Elgorn Birchgrove <Forest Tender>
  4. Script Author : John Adams
  5. Script Date : 2008.09.28
  6. Script Notes : Auto-Generated Conversation from PacketParser Data
  7. --]]
  8. function hailed(NPC, Spawn)
  9. FaceTarget(NPC, Spawn)
  10. choice = math.random(1,2)
  11. if choice == 1 then
  12. PlayFlavor(NPC, "", "Please watch where you wander. My little wards are skittish, unlike their more mature relatives.", "", 1689589577, 4560189, Spawn)
  13. elseif choice == 2 then
  14. PlayFlavor(NPC, "voiceover/english/voice_emotes/greetings/greetings_1_1006.mp3", "", "", 0, 0, Spawn)
  15. else
  16. end
  17. end