Hi sky,

in c-script or in wdl-file you must write the line over the main-function. Like this.
Code:
 
var video_mode = 7;

function main()
{
..........
..........
and so on.



In c-lite the "video_mode" line is in the main-function.
Code:
 
function main()
{
video_screen = 2;
video_mode = 7;
level_load ("Test_1.wmb");
wait(2);
}