Code:
var show_splash_now;
function end_slash()
{
show_splash_now = 0;
}
on_space = end_splash;
function show_splash()
{
show_splash_now = 1;
while(show_splash_now == 1)
{
freeze_mode = 1;
splash_1.visible = on;
sleep (3);
splash_1.visible =off;
splash_2.visible = on;
sleep (3);
splash_2.visible =off;
splash_3.visible = on;
sleep (3);
splash_3.visible =off;
splash_4.visible = on;
sleep (3);
splash_4.visible =off;
}
freeze_mode = 0;
}
?