help me

  1. BFBDev

    GML [SOLVED!] I can't figure out how to get the angle of my arrows to match their arc :(

    I first tried this tutorial, and when the archers shot the arrows were upside down (and stayed that way for the duration of their flight). Then I made this // begin step if preY = 0{ preY = y } if preY < endY{ if preX - endX < 10{ image_angle -= 1 } else{...
  2. BFBDev

    GML Projectiles stop firing after four shots HEEEEEELLP

    I have a bow that creates instances of arrows, and everything works out as intended, except it just gives up after four shots :( The bow fires by checking which frame it's on and going off of that, here's the code image_angle = point_direction(x, y, objBirdBall.x + random_range(-10, 10)...
  3. V

    GameMaker Unable to login in GameMaker 2022

    i open gamemaker and i see this: can someone help me?
  4. S

    Windows My game maker doesn't want to create an executable

    I don't know why but when I go to create an executable my game maker doesn't accept its creation, somebody help me
  5. R

    Help plz

    hello, I want to make a code that makes the system automatically decide one of those objects that I put in the parentheses of choose when the animation ends, but the system always chooses the same sequence of numbers. if I close and open the game, it gives 5, if I just reset the room it gives...
  6. R

    HELP ME WITH VALUES!!

    well, I've been starting a project for a card game and I want to create a value system, when a card is chosen the player will gain the value of the card, but the value goes up infinitely, I would like the value to remain without going up, I want to do a system based on value = 0 if card = X{...
  7. S

    [Solved] Help. I need help with a script.

    Help! I need to get a script done by tonight. I'm in a school club where I have to make a video game. Well, anyway. I have to have 3 levels on my game. It's a game where to click on objects that fall from the sky and you get points. (Stored in a variable name your_score) So, I tried to make a...
  8. E

    Enemies when chasing player jitter and shake.

    When i make an enemy code that follows the player the enemy jitters for some reason. Nothing fixes the problem. Here's my code: spd = (point_distance(x,y,obj_player.x,obj_player.y)/100); move_towards_point(obj_player.x,obj_player.y,spd);
  9. J

    Windows Gamemaker studio 2 isn't working

    Hello, I need some help with trying to fix my gamemaker studio 2. I got the free trial version of gamemaker and have been making a game for a school project but I tried to go into my project in gamemaker yesterday and all it did was load for a bit (about three seconds) then nothing else would...
  10. S

    Windows How do i add movement easing?

    by movement easing i mean easing character movement, when i let go of the movement key, i want the character to slowly come to a halt, not just stop immediately. What I've been trying to do is putting a loop on the speed of the character multiplied by 0.8, slowly decreasing their speed...
  11. NimNom1234

    Trouble with attack animation (AGAIN!)

    Okay So another member of this forum helped me with my problem a day or two ago. I feel his instructions were helpful but i did something wrong. Im trying to get my character to play through his attack animation once at the press of the space bar. However, every time i press the space bar, he...
  12. John Bailey

    Variables Within Variables in GMS2

    Hello, I'm setting up some code in a parent event to permanently despawn objects in non-persistent rooms with. What i need to do in order for this to work is set the variable "counter" to whatever variable i input from instance creation code, but not what that variable is actually equal to...
  13. L

    Windows Create an object on click

    Hello, i'm kinda new to game maker and i wonder how you could create an object when you click and where your mouse is. thanks for your help
  14. G

    Having a problem with attacking code

    Hello ! first of all i want to just tell my problem and what it is . it's not really something i'm too familiar with but it's something i did just today and it works fine if you don't take into account the massive bug that happens . the bug is that when you attack , the character stops to attack...
  15. L

    Legacy GM [SOLVED] Footstep Sound Help

    Hello People Of The Internet I Cant Figure Out How To Put A Walking Sound In My Game Without Sounding Like A Machine Gun On Steroids Can You Help Here Is My Movement Code. //Camera Movement With Mouse window_mouse_set(window_get_width() / 2, window_get_height() / 2); if (mouse_x < 640) {...
  16. L

    Help Please

    Hi I have created this "fake 3d" crawler " HERE " and would like to know how to make enemys like from doom, how would i go about doing this?, also because this version of a 3d crawler has no "mouse camera" movement and uses arrow keys to rotate 90 degrees, how do i make the enemy face me when at...
  17. B

    Trying to spawn and object, and then making it move to a certain point, and then move to an object.

    This is the code i've written now. { while (obj_LETTERS.x <= 800); { move_towards_point(800, obj_LETTERS.y, 5); } while (obj_LETTERS.x >=800); { move_towards_point(obj_doggo.x, obj_doggo.y, 5); } } where obj_LETTERS is the object that is moving from the left side of the screen, and obj_doggo...
  18. S

    How to make player sprite move? (GM2)

    I have the sprite, but when I run the game I can't move it around. I've seen people use a code page, but for the life of me I can't find it.
  19. K

    GML Can Someone Explain ds_lists To Me?

    Can Someone Explain ds_lists To Me? I Just Dont Understand Them
  20. T

    GML Help me please

    I have movement fully coded except for jump, I fly when I hold the button down can someone tell me coding to stop that please People are asking for code, it's in multiple parts. I'll separate the sections with bullets /// Initiate Variable if place_free(x,y+1) { gravity = 0.7...
Top