You should download the c-script workshops on the download page.
define the bmap and panel
}
Code:
bmap Splash_screen = <Splash.bmp">;// Name of your splash screen image
Panel Splash_pan
{
bmap = Splash_screen;// Assigns the image to this panel
pos_x = 0;// X&Y pos that panel will start from upper left corner,.
pos_y = 0;
flags = refresh;//Set flags... Look in manual for what the different flags are.
}
Then in your main function do something like this.
Code:
Function Main()
{
Freeze_mode = 1; //Freeze all functions.
Splash_pan.visible = on;// Make splash screen visible.
wait(32); // Wait 32 ticks... Could possibly change to sleep(3); or however long you want
Splash_pan.visible = off;// Turn the splash screen off
level_load("your_level.wmb");// Load level
wait(3);// Wait 3 ticks
Freeze_mode = 0;// Unfreeze game
// Call further functions here.
}
Havent tested it but think it will work. Tho has been awhile since ive scripted anything.