Almost forgot about the word 'Time's out' in box
Use this code in the Draw event
//same: this draw the color rectangle draw_rectangle_color(x-48,y-50,x+48,y+10,c_ltgray,c_ltgray, c_gray,c_gray,0); //same: this draws the button draw_sprite(button sprite,sprite_index,x,y); //new: this is the outline. Notice the '1' at the last argument? That's to indicate that it an outline. //for a filled rectangle type '0' instead draw_rectangle_color?(x-49,y-51,x+49,y+11,c_black,c_black,c_black,c_black,1); //new: first line is the font, second line is for the colour, and finally the text which is very useful draw_set_font(yourfont) draw_set_color(c_black) draw_text(x-24,y-25,"Times's Out!"); //you can change the color to a new one, also you have to add your font for he time out message. //You can change the 'x' and 'y' in the draw_text to your preferance //Plus I added an outline cause I thought it looks plain without one //you can erase all these comments because they are the ones taking all the space. :P
For the fog of war... um... I have no idea!
I have to experiment to figure this one out.
Edited by Jlm07, 27 February 2012 - 07:56 PM.











