• 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!

quesion

  1. Y

    GML Visual Continuous movement

    I’m working on a game for school in gml visual. I was my charcter to move continuously after pressing a key. Like for example after pressing up arrow the player object will move in that direction until you press another key I’ve attached the code I used to add movement and whatnot in case that...
  2. S

    I need help fixing music overlapping when exiting and re-entering a room

    So I have music on my menu screen that loops. There's a button that takes you to a different room that tells you how to play the game. The music continues playing in this other room. When you go back to the menu, the song starts again on top of the already playing song. I want the song to...
  3. Y

    GML Visual How to I make my player object move until collision

    I’m new to gamemaker but using it for a school project so I’m using GML visual. I can already make my object move and whatnot but how can I make it move forever until it collided with an object?
  4. M

    How to check a specific frames in animation in a script?

    Greetings, can anyone please give me some advice or help? I need the code to get true on certain frames of the animation I tried to do the "Animation End" event and related, but it only works at the end of the animation or does not give the desired result at all, plus it's not very convenient...
  5. M

    SOLVED How to make auto movement, but strictly by cells

    Greetings! May someone please help/guide me? I want to make a movement like in a snake, when the character moves in the direction given by the key, but strictly along the grid My idea, so far, was to make it continue to move to the middle of the next cell after calling a perpendicular direction...
  6. M

    Problem with the path following

    Greetings, I have a problem, I tried to make something like a maze generator, but it was very curved, so I decided to try to make its generation visible, and I found that for some reason my object does not see correctly the path between the desired coordinates Now it is heading to the object...
  7. M

    How to make "path_start / mp_grid_path" one after the other?

    Greetings, can someone please help me? Is it possible to make my object move to one coordinate first and then to another? I use the method past mp_grid_path and path_start, but so far the object moves only along the latter path in statements and I think I'm missing the point with path_endaction...
  8. ST0N3

    GML How do i make my character dance? [SOLVED]

    well... I have this character step code right here And when i run the game, when i press "Z" my character don't play the spr_dancing even if the image_speed is equal to 1. she's continue stuck to the first frame... I tried to move this to other places, and nothing works. Maybe it's something...
  9. P

    I want to make checkpoints in a shmup I'm working on, but I might be in some trouble. Can I still implement checkpoints?

    I'm somewhat new to GameMaker, and I've been working on a horizontally-scrolling shooter. I want to implement a checkpoint system, but I'm worried that I might've found myself in a difficult predicament. The way I set things up was to have enemies placed outside of the view in my rooms, and have...
  10. P

    Graphics Turning off Interpolate Colors Between Pixels makes the graphics look jagged. What should I do?

    I've been told that sprites would look better and less blurry in GMS if you turn off "Interpolate Colors Between Pixels", but doing so made everything look jagged AF, especially compared to when the setting is turned on. Do I need to update the sprites? Should I even bother and leave the above...
  11. N

    Obj_Player Not Set Before Reading

    am new to Gms2 and i cant find how to fix this. I keep Getting Obj_Player Not Set Before Reading But I have Obj_Player At The Top of the list MY Code is this Obj_PLayer P_Stats = { Hp : 100, HpMax : 100, }; Obj_camera On Draw Gui draw_text(View_Camera_Width - 300, View_Camera_Height -...
  12. E

    GML How does the updated SCRIPT sytsem work?

    I was doing this thing from an older video and noticed that since then scripts have been reworked. How would I do this with the new(2 months old) script system?
  13. sinigrimi

    GameMaker [SOLVED]Summon monsters in random but different places in rooms

    I am generating random room with monsters and I need them to not spawn on each other. It works but looks terribly big, can it be simplified? That's what I'm doing: Script-Code: randomize(); var x1 = 160 + random(room_width - 320); var y1 = 160 + random(room_height -...
  14. sinigrimi

    GameMaker Сhoose doesn't work randomly [SOLVED]

    I use function "choose()" and "randomize()" but they don't work. I’m constantly creating the event "Random_room2" The following is written in my script: Script-Code: randomize(); var Lvl1 = choose("Bee_room", "Rat_room", "Spider_room","Random_room1","Random_room2","Random_room3")...
  15. A

    GameMaker Deactivated instances and with statements

    Hi, I tried to find an answer to this but couldn't find it. Does with statement work with deactivated instances. Let's say an enemy has a variable hp and all the enemy instances get deactivated when they go off-screen, can I still find their hp with a with statement? If not, is there a way to do...
  16. M

    GameMaker questions about collision_line

    now I use this command in this way if !collision_line (enemy_obj.x, enemy_obj.y, object_player.x, object_player.y, object_wall, true, false) { further a long code so that it follows the player } it only works on 1 enemy, only 1 enemy reacts to me, and thus, when he sees me, he launches a...
  17. M

    questions about the code

    1) Does this code work in GameMaker Studio 2? when I enter it in the second GameMaker it says to me that there is an error in line 5, as I understand it because of the quotation marks (but I'm not 100% sure), if someone know how will replace it, tell me please 2) I don’t fully understand how...
  18. J

    SDK Explanation?

    Hello, I’m new to GMS2 and have recently learned about SDKs. I’m a little confused about what they are and why they’re needed... Are they only necessary for publishing? Do you need to download an SDK before making a game or can you do it after when you’re ready to export? Edit: I am interested...
  19. J

    How to publish game

    hey guys, I have been searching on the internet, trying to figure out how to publish a game that you have created in GameMaker to IOS (AppStore), but I can’t seem to find it. Does anyone know how to publish your game to iOS ?(is it even possible?) Btw I don’t have a Mac
  20. K

    Can I use GitHub while using exstensions

    Can I use Github while using extensions from the marketplace? I want to make my game open source (I'm using GoogleAnalytics and GooglePlayServices)
Top