Gasher.lua 704 B

123456789101112131415161718192021222324252627282930
  1. --[[
  2. Script Name : SpawnScripts/FrostfellWonderlandVillage/Gasher.lua
  3. Script Purpose : Gasher <Santa Glug's helper>
  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,2)
  16. if choice == 1 then
  17. PlayFlavor(NPC, "", "Glug, the Gigglegibber gifter, is much better than elf gifter.", "threaten", 1689589577, 4560189, Spawn)
  18. elseif choice == 2 then
  19. PlayFlavor(NPC, "", "Glug gives you gifties!", "threaten", 1689589577, 4560189, Spawn)
  20. else
  21. end
  22. end