├── AI_VoiceOver ├── Textures │ ├── StopGossip.tga │ ├── MinimapButton.tga │ ├── SettingsButton.tga │ ├── SizeGrabber-Up.blp │ ├── StopGossipMore.tga │ ├── PortraitFrameAtlas.tga │ ├── SizeGrabber-Down.blp │ ├── PortraitFrameBackground.blp │ ├── SizeGrabber-Highlight.blp │ ├── SoundQueueBulletAccept.blp │ ├── SoundQueueBulletDelete.tga │ ├── SoundQueueBulletGossip.blp │ ├── SoundQueueBulletQueue.tga │ ├── SoundQueueBulletComplete.blp │ ├── SoundQueueBulletProgress.blp │ └── spacer.tga ├── AI_VoiceOver.toc ├── Libs │ ├── AceDB-3.0 │ │ └── AceDB-3.0.xml │ ├── AceAddon-3.0 │ │ └── AceAddon-3.0.xml │ ├── AceEvent-3.0 │ │ ├── AceEvent-3.0.xml │ │ └── AceEvent-3.0.lua │ ├── AceTimer-3.0 │ │ └── AceTimer-3.0.xml │ ├── AceConsole-3.0 │ │ ├── AceConsole-3.0.xml │ │ └── AceConsole-3.0.lua │ ├── LibDBIcon-1.0 │ │ └── lib.xml │ ├── AceDBOptions-3.0 │ │ └── AceDBOptions-3.0.xml │ ├── CallbackHandler-1.0 │ │ ├── CallbackHandler-1.0.xml │ │ └── CallbackHandler-1.0.lua │ ├── AceConfig-3.0 │ │ ├── AceConfigCmd-3.0 │ │ │ └── AceConfigCmd-3.0.xml │ │ ├── AceConfigDialog-3.0 │ │ │ └── AceConfigDialog-3.0.xml │ │ ├── AceConfigRegistry-3.0 │ │ │ └── AceConfigRegistry-3.0.xml │ │ ├── AceConfig-3.0.xml │ │ └── AceConfig-3.0.lua │ ├── LibDataBroker-1.1 │ │ ├── README.textile │ │ └── LibDataBroker-1.1.lua │ ├── LibStub │ │ └── LibStub.lua │ └── AceGUI-3.0 │ │ ├── AceGUI-3.0.xml │ │ └── widgets │ │ ├── AceGUIContainer-SimpleGroup.lua │ │ ├── AceGUIWidget-Heading.lua │ │ ├── AceGUIWidget-Button.lua │ │ ├── AceGUIWidget-InteractiveLabel.lua │ │ ├── AceGUIContainer-InlineGroup.lua │ │ ├── AceGUIContainer-BlizOptionsGroup.lua │ │ ├── AceGUIWidget-Icon.lua │ │ ├── AceGUIWidget-Label.lua │ │ ├── AceGUIContainer-DropDownGroup.lua │ │ ├── AceGUIWidget-ColorPicker.lua │ │ ├── AceGUIWidget-Keybinding.lua │ │ ├── AceGUIContainer-ScrollFrame.lua │ │ ├── AceGUIWidget-EditBox.lua │ │ ├── AceGUIWidget-CheckBox.lua │ │ ├── AceGUIWidget-Slider.lua │ │ ├── AceGUIContainer-Frame.lua │ │ ├── AceGUIWidget-MultiLineEditBox.lua │ │ ├── AceGUIContainer-Window.lua │ │ └── AceGUIContainer-TabGroup.lua ├── Debug.lua ├── addon.xml ├── embeds.xml ├── Interface.lua ├── Environment.lua ├── Common │ ├── FuzzySearch.lua │ ├── Enums.lua │ └── DataModules.lua ├── SoundQueue.lua ├── QuestOverlayUI.lua ├── VoiceOver.lua └── Utils.lua ├── AI_VoiceOverData_Vanilla ├── Module.lua └── AI_VoiceOverData_Vanilla.toc └── README.md /AI_VoiceOver/Textures/StopGossip.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s0h2x/AI_VoiceOver-WotLK/HEAD/AI_VoiceOver/Textures/StopGossip.tga -------------------------------------------------------------------------------- /AI_VoiceOver/Textures/MinimapButton.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s0h2x/AI_VoiceOver-WotLK/HEAD/AI_VoiceOver/Textures/MinimapButton.tga -------------------------------------------------------------------------------- /AI_VoiceOver/Textures/SettingsButton.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s0h2x/AI_VoiceOver-WotLK/HEAD/AI_VoiceOver/Textures/SettingsButton.tga -------------------------------------------------------------------------------- /AI_VoiceOver/Textures/SizeGrabber-Up.blp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s0h2x/AI_VoiceOver-WotLK/HEAD/AI_VoiceOver/Textures/SizeGrabber-Up.blp -------------------------------------------------------------------------------- /AI_VoiceOver/Textures/StopGossipMore.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s0h2x/AI_VoiceOver-WotLK/HEAD/AI_VoiceOver/Textures/StopGossipMore.tga -------------------------------------------------------------------------------- /AI_VoiceOver/Textures/PortraitFrameAtlas.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s0h2x/AI_VoiceOver-WotLK/HEAD/AI_VoiceOver/Textures/PortraitFrameAtlas.tga -------------------------------------------------------------------------------- /AI_VoiceOver/Textures/SizeGrabber-Down.blp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s0h2x/AI_VoiceOver-WotLK/HEAD/AI_VoiceOver/Textures/SizeGrabber-Down.blp -------------------------------------------------------------------------------- /AI_VoiceOver/Textures/PortraitFrameBackground.blp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s0h2x/AI_VoiceOver-WotLK/HEAD/AI_VoiceOver/Textures/PortraitFrameBackground.blp -------------------------------------------------------------------------------- /AI_VoiceOver/Textures/SizeGrabber-Highlight.blp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s0h2x/AI_VoiceOver-WotLK/HEAD/AI_VoiceOver/Textures/SizeGrabber-Highlight.blp -------------------------------------------------------------------------------- /AI_VoiceOver/Textures/SoundQueueBulletAccept.blp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s0h2x/AI_VoiceOver-WotLK/HEAD/AI_VoiceOver/Textures/SoundQueueBulletAccept.blp -------------------------------------------------------------------------------- /AI_VoiceOver/Textures/SoundQueueBulletDelete.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s0h2x/AI_VoiceOver-WotLK/HEAD/AI_VoiceOver/Textures/SoundQueueBulletDelete.tga -------------------------------------------------------------------------------- /AI_VoiceOver/Textures/SoundQueueBulletGossip.blp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s0h2x/AI_VoiceOver-WotLK/HEAD/AI_VoiceOver/Textures/SoundQueueBulletGossip.blp -------------------------------------------------------------------------------- /AI_VoiceOver/Textures/SoundQueueBulletQueue.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s0h2x/AI_VoiceOver-WotLK/HEAD/AI_VoiceOver/Textures/SoundQueueBulletQueue.tga -------------------------------------------------------------------------------- /AI_VoiceOver/Textures/SoundQueueBulletComplete.blp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s0h2x/AI_VoiceOver-WotLK/HEAD/AI_VoiceOver/Textures/SoundQueueBulletComplete.blp -------------------------------------------------------------------------------- /AI_VoiceOver/Textures/SoundQueueBulletProgress.blp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s0h2x/AI_VoiceOver-WotLK/HEAD/AI_VoiceOver/Textures/SoundQueueBulletProgress.blp -------------------------------------------------------------------------------- /AI_VoiceOver/AI_VoiceOver.toc: -------------------------------------------------------------------------------- 1 | ## Interface: 30300 2 | ## Title: VoiceOver 3 | ## Notes: Adds voiceovers to npcs. 4 | ## Version: 1.3.0 5 | ## SavedVariables: VoiceOverDB 6 | ## X-Part-Of: VoiceOver 7 | 8 | embeds.xml 9 | addon.xml 10 | -------------------------------------------------------------------------------- /AI_VoiceOver/Libs/AceDB-3.0/AceDB-3.0.xml: -------------------------------------------------------------------------------- 1 | 3 |