Questions tagged [game-maker]

GameMaker is a Windows and Mac OS IDE which allows users to easily develop computer games without the requirement of prior computer programming experience.

Game maker

GameMaker is designed to allow its users to easily develop video games without having to learn a complex programming language such as C++ or Java through its proprietary drag and drop system. These icons represent actions that would occur in a game, such as movement, basic drawing, and simple control structures. It is also possible to create custom "action libraries" using the Library Maker.


Graphics

GameMaker primarily runs games that use 2D graphics, allowing the use of limited 3D graphics. It supports the ability to create particle effects such as rain, snow and clouds, however not natively in 3D except through use of Dynamic Link Library.


GML

Game Maker Language (GML) is the primary interpreted scripting language used in GameMaker, which is usually significantly slower than compiled languages such as C++ or Delphi. It is used to further enhance and control the design of a game through more conventional programming, as opposed to the drag and drop system.


Platforms

GameMaker accommodates redistribution on multiple platforms. The program builds for these platforms: Windows, Windows 8, Mac OS X, Ubuntu, HTML5, Android, iOS, Windows Phone 8, Tizen, Xbox One, and Playstation.


Source: Wikipedia

449 questions
-1
votes
2 answers

How to make car add points/laps as it goes over finish line?

I am programming a simple top-down car game on game-maker where the purpose of the game is to get as many points/laps by driving the car around the oval shaped track. The car drives with speed = 5 and changes direction with the code direction =…
-1
votes
1 answer

Top down car game (game-maker)

I'm new to programming on game-maker and programming in general. This is probably very easy but i'm unsure of how to go about things. I am programming a simple top-down car game in which the car drives (forward) by it's self and is steered with the…
-1
votes
2 answers

Game Maker - Freezing an sprite on animation end

When the player dies, I want the sprite to stop animating on the last frame. I tried this on Animation End event if (sprite_index == spr_ninja_dead) { image_speed = 0; image_index = image_number - 1; } I also tried this if (sprite_index…
TIES
  • 1
  • 1
  • 1
-1
votes
1 answer

How do you find/make work using Game Maker ( GML )?

Does anyone know ways to use GML programming skills to find or make work, such as freelance work using Game Maker? I was thinking of doing freelance game prototyping work for people looking for a quick mock-up and getting the feel for their game,…
keanu.b
  • 403
  • 5
  • 14
-1
votes
1 answer

game maker, in game image scaling problems

Me and my friends are making in which object come towards the player and the player moves out of the way. We have an object that increases the speed at which the objects come towards you, so we have to increase the rate of speed the image scales.…
jon
  • 1
  • 1
-1
votes
1 answer

Can someone see what's wrong in this code in GML?

var xpos = 0; var ypos = 0; xpos = obj_magnet.x; ypos = obj_magnet.y; if (xpos > 435 && xpos < 704 && ypos > 350 && ypos < 640) { with(obj_lamp) { instance_change(obj_lamp_light, true); } if obj_lamp_light.image_index == 5 …
shrouk
  • 43
  • 1
  • 1
  • 10
-1
votes
1 answer

How We Can Change Objects Position With Animation On Game Maker?

I want to code an object that, when the left mouse button it pressed on it, starts moving towards (x,y) point and when it reaches the (x,y) point it stops moving. I order to object when it's clicked by the left mouse button. The object moves towards…
-1
votes
1 answer

How to move any object to a particular position with cursor (Mouse) in game maker studio

I want to move object by cursor to position of any other Object. In this code apple object is moving with a cursor but it does not stop at (Eight-Object). In other case if i put the Apple object at any other place except Eight-Object, it must go…
-1
votes
2 answers

how to make an object visible again in game maker

Fist of all, I'm really sorry for my bad English and I pretty new to game maker . I have 2 object in the game : obj_apple and obj_door( I unchecked visible box) my question is how can I make an obj_door visible in the room when all the obj_apple…
Ti Gon
  • 11
  • 2
  • 4
-1
votes
3 answers

How do I restart the current room to what it was when the player entered it?

While making a game, I had set it up so when the player dies, the game resets. Feeling this was a bit too harsh, I did some research and found the room_restart() code, which is meant to restart the current room. But, when I input it and triggered it…
The Man
  • 149
  • 3
  • 14
-1
votes
1 answer

Game maker studio accessing iOS app's NSUserDefaults, is it possible?

I have a native app deployed to my iPhone, and would like to make another app (game) by using game maker studio. On the native app, I have some data like: username, date of birth, etc. And I would like to access those data from the game. I have been…
Hanny Udayana
  • 388
  • 3
  • 21
-1
votes
1 answer

Random spawn in specific location game maker

Ok I have an object and a big square as well as other stuff in a room. I need the object which is obj_dot to randomly spawn but only within the big square (which is obj_paper) every time the room restarts.
user1947331
  • 47
  • 2
  • 7
-1
votes
2 answers

Adding image with JavaScript

To make a long story short, I need to use JavaScript to add an image to an html5 game given the URL. The catch is that it is inside a program called gamemaker html5, which is basically a drag and drop IDE for creating HTML games. I don't know any…
STONEYFTW
  • 23
  • 1
  • 5
-2
votes
2 answers

I imported a pokemon project to gmx

// but the code is throwing unexpected terminal operator new function MovePokemon(argument0, argument1) { old = argument0; new = argument1; TPartyID = global.PartyID[old] global.PartyID[old] = global.PartyID[new] …
cpyd
  • 1
  • 1
-2
votes
1 answer

I build pacman in game maker, how build ghost to chasing pacman like AI greedy

need code please, this my code: { if (hspeed == 0) 0 { if (random(3)<1 and place_free(x-4,y)) { hspeed = -4; vspeed = 0; } if (random(3)<1 and place_free(x+4,y)) { hspeed = 4; vspeed = 0;}
1 2 3
29
30