Files
coa-ai-voiceover/AI_VoiceOverData_Vanilla/Module.lua
T
andrew6180 1e9fa2aaca init
2023-04-16 00:31:14 -07:00

15 lines
521 B
Lua

if not VoiceOver or not VoiceOver.DataModules then return end
AI_VoiceOverData_Vanilla = {}
function AI_VoiceOverData_Vanilla:GetSoundPath(fileName, event)
setfenv(1, VoiceOver)
if Enums.SoundEvent:IsQuestEvent(event) then
return format([[generated\sounds\quests\%s.mp3]], fileName)
elseif Enums.SoundEvent:IsGossipEvent(event) then
return format([[generated\sounds\gossip\%s.mp3]], fileName)
end
end
VoiceOver.DataModules:Register("AI_VoiceOverData_Vanilla", AI_VoiceOverData_Vanilla)