//////////////////////////////////////////////////////////
////Flickering Light Code
//////////////////////////////////////////////////////////
////Attach this action to a relatively small model, and place it
////under a light prefab or something to give it a very good effect.
////Feel free to change the range of the light.

ACTION dyna_light {
	SET MY.INVISIBLE,ON;
	SET MY.LIGHTRED,128;
	SET MY.LIGHTGREEN,128;
	SET MY.LIGHTBLUE,128;
		WHILE (1) {
			MY.LIGHTRANGE = RANDOM (600)+100;
		WAITT 2;
	}
} 

