• Hey Guest! Ever feel like entering a Game Jam, but the time limit is always too much pressure? We get it... You lead a hectic life and dedicating 3 whole days to make a game just doesn't work for you! So, why not enter the GMC SLOW JAM? Take your time! Kick back and make your game over 4 months! Interested? Then just click here!

/code

  1. jameswillis

    Vertical Sliding Menu Not Working

    so im trying to create a vertical sliding menu, and i followed a tutorial on youtube for it, however my project is working the way the guys does in the video. I've triple checked to make sure the code is correct. I had a programmer friend who said based on the error that GMS gave me that the...
  2. jameswillis

    Windows Code not working the way its intended

    Im new to game maker studio, and im trying to create a sliding menu for a project. I followed a tutorial on youtube to a T, and for some reason the slide bar doesnt work the way its supposed to. I did everything the guy in the video did, but for me, the slider goes only halfway down, and goes up...
  3. V4NTT4BL4CK

    HTML5 collision problems

    when my player collides with X walls, he gets stuck there and can't go back. this is my code: #region { sprite_index = spr_1; var sp = keyboard_check(ord("A")) - keyboard_check(ord("D")) if (sp != 0) { if (place_free(x + Sprite4 * 5, y)) x -= sp * 5; if (place_meeting(x+sp,y,obj_wall))...
  4. V4NTT4BL4CK

    Collision issues!!!

    I've been working on this prototype minigame to learn how to use Game Maker Studio 2, but I have a problem that I don't have with other '' walls '' or colliding objects ... when I jump to the roof or platform, my character should stop and return to the ground when he touches the object but...
  5. C

    Attack and jump animation not working

    Hello! I am fairly new to GM and have been watching tutorials on a side scroller. I have made my own sprites and animations, but when I put the code in, no matter what I do, when I press the left mouse button (attack button), my character plays the 1st frame of the animation, and immediately...
  6. Z

    Problem with lives in game[Solved]

    Hi, I am new to gamemaker .I am making a remake of Asteroids .I have problem with lives. I want lives and when player has 100 points add another live but stop after one added and after player reachs 200 points add another live.Here is a code: var LoopCount for (LoopCount = 0; LoopCount <...
Top