1234567891011121314151617181920212223242526272829303132 |
- --[[
- Script Name : SpawnScripts/FrostfellWonderlandVillage/aFrostfellfae.lua
- Script Purpose : a Frostfell fae
- Script Author : Cynnar
- Script Date : 2019.10.29
- Script Notes : Auto-Generated Conversation from PacketParser Data
- --]]
- function spawn(NPC)
-
- end
- function respawn(NPC)
- spawn(NPC)
- end
- function hailed(NPC, Spawn)
- FaceTarget(NPC, Spawn)
- local choice = math.random(1,3)
- if choice == 1 then
- PlayFlavor(NPC, "", "Welcome to the Wonderland Village.", "", 1689589577, 4560189, Spawn)
- elseif choice == 2 then
- PlayFlavor(NPC, "", "Even the Grump is joining in this year.", "", 1689589577, 4560189, Spawn)
- elseif choice == 3 then
- PlayFlavor(NPC, "", "Maybe one day Mr. McScroogle will join in too.", "", 1689589577, 4560189, Spawn)
- else
- end
- end
|