nice one. you can make outlines for TEXTs but this is indeed usefull too. Btw colored outline would be:

Code:
function draw_text_outline_coloe(x,y,STRING* str, VECTOR* color,VECTOR* outline_color)
{
	draw_text(str,x-1,y,outline_color);
	draw_text(str,x+1,y,outline_color);
	draw_text(str,x,y-1,outline_color);
	draw_text(str,x,y+1,outline_color);
	draw_text(str,x,y,color);
}



3333333333