answersLogoWhite

0

Game Maker

Game Maker is a game creation program owned by Yo-Yo games. Game Maker uses triggered events and a drag-and-drop system, however you can also code GML, or Game Maker Language, for more precise control over your game.

368 Questions

How do you jump on an enemies head in scripting in Game maker?

if vspeed > 0 && y < other.y+8

{

if vspeed>0 {

if (vspeed > 0 && not place_free(x,y+vspeed)) move_contact(270);

vspeed = 0;

}

}

else

{

x=xprevious

hspeed = -hspeed;

}//put this in the collision event with the ememy

How do you make objects chase other objects in game maker?

If object a is the one who has to be chased it's like this:

In B step event:

direction = point_direction(x,y,A.x,A.y)

speed = {your speed i recommend 4}

How do you make a health bar on a 3D game on game maker?

draw_set_color(c_black);

d3d_set_projection_ortho(0,0,640,480,0);

d3d_set_hidden(false);

draw_healthbar(x+10, y+10, x+110, y+20, amount, c_black, c_lime, c_red, 0, true, true);

draw_sprite(spr_coins,0,x+10,y+42);

d3d_set_hidden(true);

try this men

How do you make a level end when there are no enemy's left in game maker 8 pro?

I don't know much about Game Maker, tried to use it, but i was ten at the time and failed miserably ._.

Well, from my short experience from other game making tools (game factory, etc.), you could make each enemy adds +1 to a counter when the player kills him, and make the counter end the level when it reaches the number of present enemies.

Example: Imagine a level has 8 enemies. Each one you kill adds +1 to a counter, let's name it DeathCount. DeathCount starts at 0. With each enemy you kill, DeathCount goes up by 1. When DeathCount reaches 8, which is the total number of enemies in the level, it triggers an event that makes the level end.

Don't know if this helps, as i have no experience with GM, but at least i tried :)

How do you draw score or coins on game maker 8 pro?

draw_text(0,0,score);

For coins, you'll need to make a variable that stores how many to draw.

How do you make an object fly in game maker 7?

Have it move without gravity keeping it on the ground.

How do you create a question and answer box in game maker?

First Make a Sprite of the question make it an object, same with the answer

How do you edit exe in game maker?

Executables (even compiled by Game Maker) are not possible to edit in Game Maker. To edit it you would have to decompile or disassemble it, or use a hex editor. Game Maker can only edit files such as *.gmk, *.gm81 and older versions of the Game Maker files.

How do you reset score to zero in game maker 8?

Get a Set Variable Action and in the first field type score and the second type 0. Easy

How do you change the cursor on game maker 8 lite?

Easy. You create an object that looks like the cursor you want and for the step event add this code:

x=mouse_x

y=mouse_y

Be sure to deactivate the mouse in the global game settings and to put the new object in each room.

In Game Maker 8 Lite how do you create a gun which could be equipped?

You make sprites that have the gun equiped all ready

then make it so when your person touches the thing it changes its sprite

In Game Maker 7 how do you make the score not reset at the beginning of each level?

Stop setting score.

Set the score on the first level's room creation code.

Set it to a global. variable as well.

What is the name of the major for making 3D models or designing 3D characters?

The main programs used are Autodesk Maya and Autodesk 3DS Max. Max is used mainly in games, whereas Maya is used mainly in films. These are pretty expensive though, and I'd recommend you get Blender (which is free) if you're new to 3D. Cinema 4D is also used a fair bit.

How do you make lives in game maker 8?

I will explain how to make your own lives variable; granting you better control over them.

Create event:

lives_left = 3; //Replace 3 with the lives you start with.

health_left = 100; //Replace 100 with the health you start with.

health_max = 100; //Replace 100 with maximum health available.

lives_max = 3; //Replace this 3 the maximum amount of lives.

Step event:

if(lives_left < .1) { game_end(); /*Replace game_end(); with how your game ends*/ }

if(health_left < .1) { /*How you die goes here*/ }

if(health_left > health_max) { health_left = health_max }

if(lives_left > lives_max) { lives_left = lives_max; }

Whatever event makes you get hurt:

health_left -= .1; //Replace .1 with how much damage you take.

This works by simple math; if you have too many lives, you lose that extra life, to have the maximum amount. If you get hurt, it removes some of your health variable. If you have 0 health left, you lose a life. (Set health back to the maximum when you die though, or you'll infinitely die) If you have 0 lives left, the game ends.

This system allows for healing, by health_left += 20; /*Replace 20 with how much to heal*/, allows you to increase lives max, increase how many lives, and allows you to increase how much health you can have.

How do you make game maker ememeys spawn and move?

You have to get a clone script for them to spawn and then do the tutuorial for the moving part

What kind of games can you make in game maker?

not bad boring ones you can make 3d games as well its really hard to begin with once you finish it try rpg maker vx then move onto flash or java programming or code:blocks.

How do you finish the game Romance Maker?

1.plant the flower

2.bring the book

3.free the egg

4.put the TV.

5. get the stump

6. handy tools

7.hevey hammer

8. the arrow of love

and the romance story starts with a beautiful ending.

How do you become a stick game maker?

Learn flash and use it to create a game.

How do you make a game in game maker isometric?

If you download from the official site it Will come with a lot of little sprites if not you can download them somewhere else. In those sprites there will be a folder called isometric the spites you need are in that.