The compiler in the beta version is indeed not yet fully finished. If you don't use the new features like geometry import, you can just copy the old compiler - the wwmp2wmb.exe file - from your A6 version into your A7 folder.

Still, we're interested in any levels that cause problems with the new compiler. If you want you can send that level to the support - we'll look into the problem.


- To avoid confusion: In C-Script, variables like video_mode _must_ be redefined outside the main function.

var video_mode=7;
var fps_max = 60;
on_esc = game_end;

In lite-C this won't work, all variables must set inside a function, and in case of video modes they must be set _before_ the first wait (because the video device is created after the first frame).

function main()
{
video_mode=7;
fps_max = 60;
on_esc = game_end;
...
wait(1);
}

See: http://manual.conitec.net/litec_migration.htm