Hi. I made a door in the level I working on to reach the next level. There is the code for the door

Code:
action doormatic()
	{

	my.emask |= ENABLE_IMPACT; 	
	
	my.event = load_lev_2;



}


Easy? No 'cause the function ''load_lev_2'' will crash (e1523)
and I dont know why. Except the message window, my player model keep walking for nothing when the level 2 is loaded.

Code:
function load_lev_2()


{


	level_load("1stfloor.wmb");

		
	wait(1);

}



Can you help me please?