GarsleblatGigglegibber.lua 855 B

1234567891011121314151617181920212223242526272829303132
  1. --[[
  2. Script Name : SpawnScripts/FrostfellWonderlandVillage/GarsleblatGigglegibber.lua
  3. Script Purpose : Garsleblat Gigglegibber <Frostfell Vendor>
  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, "", "Gets gifties for everyone on your list!", "", 1689589577, 4560189, Spawn)
  18. elseif choice == 2 then
  19. PlayFlavor(NPC, "", "Get yours Frostfells Shopping Bags here! Made from the finest ingredients!", "", 1689589577, 4560189, Spawn)
  20. elseif choice == 3 then
  21. PlayFlavor(NPC, "", "Gots good gifties, I do!", "", 1689589577, 4560189, Spawn)
  22. else
  23. end
  24. end