aFrostfellfae.lua 802 B

1234567891011121314151617181920212223242526272829303132
  1. --[[
  2. Script Name : SpawnScripts/FrostfellWonderlandVillage/aFrostfellfae.lua
  3. Script Purpose : a Frostfell fae
  4. Script Author : Cynnar
  5. Script Date : 2019.10.29
  6. Script Notes : Auto-Generated Conversation from PacketParser Data
  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. local choice = math.random(1,3)
  16. if choice == 1 then
  17. PlayFlavor(NPC, "", "Welcome to the Wonderland Village.", "", 1689589577, 4560189, Spawn)
  18. elseif choice == 2 then
  19. PlayFlavor(NPC, "", "Even the Grump is joining in this year.", "", 1689589577, 4560189, Spawn)
  20. elseif choice == 3 then
  21. PlayFlavor(NPC, "", "Maybe one day Mr. McScroogle will join in too.", "", 1689589577, 4560189, Spawn)
  22. else
  23. end
  24. end