Code:
screen_colour.blue = 150; // WRONG!

Make it:
Code:
screen_color.blue = 150; // CORRECT!!


and function quit game:
Code:
function quit_game()
{
	while(!key_any) {wait(1);}
	sys_exit(NULL);
}