12345678910111213141516171819202122232425262728 |
- --[[
- Script Name : SpawnScripts/TheHiddenVillageofKugup/Vripp.lua
- Script Purpose : Vripp
- Script Author : neatz09
- Script Date : 2023.04.03
- Script Notes : Auto-Generated Conversation from PacketParser Data
- --]]
- function spawn(NPC)
- end
- function respawn(NPC)
- spawn(NPC)
- end
- function hailed(NPC, Spawn)
- RandomGreeting(NPC, Spawn)
- end
- function RandomGreeting(NPC, Spawn)
- local choice = MakeRandomInt(1,2)
- if choice == 1 then
- PlayFlavor(NPC, "", "Dolly don't worry I'll never lose you again!", "", 0, 0, Spawn, 0)
- elseif choice == 2 then
- PlayVoice(NPC, "voiceover/english/voice_emotes/greetings/greetings_3_1059.mp3", 0, 0, Spawn)
- end
- end
|