123456789101112131415161718192021222324 |
- --[[
- Script Name : SpawnScripts/qeynos_combined02/BungleProudfoot.lua
- Script Author : Rylec
- Script Date : 2021.01.25 05:01:05
- Script Purpose :
- :
- --]]
- function spawn(NPC)
- end
- function hailed(NPC, Spawn)
- FaceTarget(NPC, Spawn)
- math.randomseed(os.time())
- local voice = math.random(1,3)
- PlayFlavor(NPC, "voiceover/english/voice_emotes/greetings/greetings_"..voice.."_1026.mp3", "Eh, e... xcuse me? What? Huh? Can I help you? No.. No... Too much to do. Arrrgg!", "scream", 0, 0, Spawn)
- end
- function respawn(NPC)
- spawn(NPC)
- end
|