Changes feedback
1. HoF - Wulfstan - Lazlo: This sound was removed incorrectly in my opinion. It adds the sound of raven screech as Ravens start circling around Lazlo.
--line 73 DialogScenes\A1C2\M5\S1\DialogScene.xdb
<Item>
<Delay>4</Delay>
<sound href="/Sounds/_(Sound)/Heroes/Heroes-CS/Wisard/AmbCurse.xdb#xpointer(/Sound)"/>
<Duration>10</Duration>
</Item>
2. HoF - Ylaya - The Break: You have rearranged the conversation words but that is making it desync with the sound in at least in English (content of subtitles differs from dwarves Speech).
You can compare this file with the one in your package.
3. Vanilla - Academy - The Mage: Finishing Vanilla campaign does not launch Vanilla cinematic anymore. In vanilla when the campaign completed this Cinematic was played
This does not happen anymore in ToE. The outro files are present and can be found at:
- <game folder>/video/outro.ogg - this is the media file
- <game folder>/video/outro.xml - this is the xml information file
To make it work you need to do the following 2 changes:- in UI\UIGameRoot.(UIGameRoot).xdb find this
<Item>
<ID>outro</ID>
<MovieDesc>../video/outro_a1.xml</MovieDesc>
</Item>
and change it to this <Item>
<ID>outro</ID>
<MovieDesc>../video/outro.xml</MovieDesc>
</Item>
- in C6M5 LUA script add this command just before Win().
consoleCmd("video_outro");
You can see the change here.