1234567891011121314151617181920212223242526272829 |
- --[[
- Script Name : SpawnScripts/FrostfellWonderlandVillage/NathanIronforge.lua
- Script Purpose : Nathan Ironforge
- Script Author : Cynnar
- Script Date : 2019.10.29
- Script Notes : Auto-Generated Conversation from PacketParser Data
- --]]
- function spawn(NPC)
- SetPlayerProximityFunction(NPC, 10, "InRange", "LeaveRange")
- end
- function respawn(NPC)
- spawn(NPC)
- end
- function hailed(NPC, Spawn)
- FaceTarget(NPC, Spawn)
- local choice = math.random(1,2)
- if choice == 1 then
- PlayFlavor(NPC, "", "Coulth you gef me some hop wawer?", "", 1689589577, 4560189, Spawn)
- elseif choice == 2 then
- PlayFlavor(NPC, "", "mmmnnthm mthmmnnn!!", "", 1689589577, 4560189, Spawn)
- else
- end
- end
|