Advertisement
D0nyAlcap0ney

Combo Counter

Aug 23rd, 2024
140
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Game Maker 0.32 KB | Source Code | 0 0
  1. ///A simple block of code that checks for the objMaskMenu and then draws a combo counter on the top left of the screen.
  2.  
  3.  
  4. if instance_exists(objMaskMenu) {
  5.     // Do nothing (implicitly does nothing)
  6. } else {
  7.     draw_set_color(c_fuchsia);
  8.     draw_set_font(fntAnswers);
  9.     draw_text(32, 32, string(global.combo) + "x");
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement