Sorry for the delay in answering, I wanted to come home and check the vanilla files to be sure the references are correct in the vanilla, as I haven't looked at vanilla files for ages.
-To change the video that plays above the
options menu in the "
main menu screen" (the
rain/thunder over NPP video) you need to go to
textures\ui folder and locate:
ui_mm_main_back_crop.ogg video.
All videos are in OGG Media Stream format, so you need to format your video accordingly.
-To change the
fire video clip, that burns at the bottom of the screen, change:
ui_mm_fire.ogg-There's another video instead of
NPP rain video, which is:
ui_mm_window_back_crop, which offers a campfire view video.
If you want to
amend/change the sizes of main menu windows (video playing windows), then the file that's need to be worked on is:
config\ui\ ui_mm_main.xmlThen if you change/replace the music of the main menu with the sound of your own video, the sound issue will have been dealt as well. (videos do come without sound.)
There are also other videos on
textures\intro and
textures\sleep folders (all OGG as well) and their sounds(or dialogs) are in
sounds folder.
Check the
config\ui\movies.xml for the protocol for pointing the sound to the related video.
Example: This example is the video from the
"I Wish for Gold" choice in quick-end play of the game. You know, where he dies with a gold coin in his hand. Length is 1:24 minutes.
- Code: Select all
<mov_desire_2>
<play_each_item>1</play_each_item>
<global_wnd x="0" y="0" width="1024" height="768">
<auto_static x="0" y="0" width="1024" height="768" stretch="1">
<window_name>back</window_name>
<texture>intro\intro_back</texture>
</auto_static>
</global_wnd>
<item type="video">
<sound>characters_voice\scenario\video\final_gold</sound>
<pause_state>on</pause_state>
<function_on_stop>xr_effects.game_credits</function_on_stop>
<can_be_stopped>off</can_be_stopped>
<video_wnd x="0" y="0" width="1024" height="768" stretch="1">
<texture x="0" y="1" width="512" height="286">intro\final_gold</texture>
</video_wnd>
</item>
</mov_desire_2>
------------------------------
Hope I've been helpful a bit.