Advertisement
Guest User

Untitled

a guest
Nov 30th, 2015
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.  
  2. draw event:
  3. if room=room0
  4. {
  5. // Play
  6. draw_set_font(font0);
  7. draw_set_color(c_black);
  8. if (selected == 1) draw_set_color(c_red);
  9. draw_text(512, 128, ""+string(menu[0]));
  10. //}
  11.  
  12. // Play Random
  13. draw_set_color(c_black);
  14. draw_text(512, 192, ""+string(menu[1]));
  15. if (selected == 2) draw_set_color(c_red);
  16. draw_text(512, 192, ""+string(menu[1]));
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement