--[[ Script Name : SpawnScripts/BigBend/aBonebreakerChampion.lua Script Purpose : a Bonebreaker Champion Script Author : torsten Script Date : 2022.07.13 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,3) if choice == 1 then PlayFlavor(NPC, "", "If I can beat all of the other champions... I can enter the gymnasium.", "ponder", 0, 0, Spawn, 0) elseif choice == 2 then PlayVoice(NPC, "voiceover/english/voice_emotes/greetings/greetings_1_1002.mp3", 0, 0, Spawn) elseif choice == 3 then PlayVoice(NPC, "voiceover/english/voice_emotes/greetings/greetings_3_1002.mp3", 0, 0, Spawn) end end