Video Resolution: 1000x720. There is no readme. Release: July, 9th 2006.
7z Download (9.45MB):
http://zerted.the.cat/swbf2/res/SWBF2%2 ... 20HowTo.7z
MediaFire
http://zerted.the.cat/swbf2.xhtml
Note: I do not check mirrors to see if they are hosting the exact same files
Note: Load Screen program update: v1 of the GUI is finished
The video is broken into two parts (Wink kept running out of memory and crashing

Things seem to go faster than they should because I cut some munging and loading screens out. That way, you wouldn't have to sit and watch my computer load.
(7z is more compressed than the Zip. Get an extraction program here: http://www.7-zip.org/ )
(I used Wink to make the videos: http://www.debugmode.com/wink/ )
"Video Script" Steps:
1. Create a map.
( make sure you munge Common before step 6 )
By default, Visual Munge does nothing when munging Load. This needs to be changed.
2. Enable Load munging. Open data_XXX/_BUILD/Load/munge.bat and remove all of the @ characters
3. Create the load folder.
We want to replace the standard load image with our own. The standard image is stored in the game's Load\common.lvl.
The name of the load image inside common.lvl is "loadscreen".
4. Create your load image. It must be a power of 2! (The game's default image is 1024x1024)
5. Create the load's req file.
- 1) Create data_XXX/Load/common.req
2) Add:Code: Select all
ucft { REQN { "texture" "loadscreen" } }
6. Munge Load.
By default, Visual Munge does not copy the Load files over to the map's addon folder. We must do this.
7. Copy the load's munged common.lvl into the map's addon folder.
( make sure to keep the directory structure consistent with the game's )
Now we need to tell SWBF2 to read our custom Load common.lvl when our map starts.
8. Open up the map's script files and read in our new data file: common.lvl.
- UnderAdd
Code: Select all
function ScriptInit()
( make sure to save the scripts )Code: Select all
--tell the game to load our loading image ReadDataFile("dc:Load\\common.lvl")
10. Have fun.
Note: There are many ways to get a custom screen loaded. The modders ask you to please do it this way.