game maker

  1. sercan

    Android My first game for android : SimgeVu

    Hi everyone, First I would like to thank to Yoyo Games for giving me the oportunity of making my own game. Finally it has been published on Google Play Store. This is very simple game made with Game Maker Studio 2. Actually started with GMS 1.4 than finalized with GMS 2. This is not my main...
  2. Fixer90

    Credit where credit is due?

    To what extent do I have to mention GameMaker Studio at all in the creation of my game? Can I literally make a game and pretend GMS had nothing to do with it? (NOTE: I'm using Professional Edition)
  3. R

    Steam Missileman Origins - Inexpensive and released

    This is my latest game release, Missileman Origins You can find the game here on Steam: http://store.steampowered.com/app/461280/ Description from the Steam page: Missileman Origins is a retro-esque action-platformer set in a world where robots and humans co-exist as civilians. Missileman...
  4. Radr

    [Diablo Clone (no title yet)] Devlog - fun attempt at a Diablo-style RPG

    Hey all, I'm just getting very excited now that I've got some of the framework behind my Diablo-style item generation and inventory going and felt the need to share it. I've been working on this project in my spare time for the last couple of weeks, and I've got a small few things working...
  5. G

    Gravity / Scale / Score - Help please

    Good afternoon, how are you all? My first post in the forum. I would like the help of you to solve three problems that I am not getting. First of all, I'm new to GameMaker, programming as well. So thank you for helping me step by step. First I need help to sort out the pull gravity of an...
  6. R

    Costs for composers/artists?

    So, my next project is coming more and more into fruition. I may take it to Kickstarter to gather funds. However, I'm not quite sure how I want to pinpoint the goal because I'm not sure how much it costs to hire people. I want to hire people that could pull off NES-esque music and artists that...
  7. R

     Any Spine Game Maker integration e-books of any worth?

    GM Version: 1.4 but thinking of upgrading to 2.0 soon. Target Platform: PC I've checked out some you tube videos and the yoyo web page on spine but wanted some e books that might help me get a better understanding on coding spine animations into your game. Anyone know any?
  8. E

    Android Debug_overlay(ColorWhite) Slow play, in one room

    My game is slow and has a large white rectangle, some know what it should be, it's an Amazon Kindle Fire. I opened a new project with a room and it turned out the same result, is it possible for someone to help me? I do not speak English, thanks to google translator. Please, thanks to your...
  9. R

    Game Maker 7 Pro

    Hi. I'm a very longtime Game Maker user, but first time forum poster here. I am trying to experiment with video implementations. In Game Maker Studio I used GIFs to compensate for actual video, but the filesize increases tremendously. So I'd try and use Game Maker 8 Pro to implement video files...
  10. Y

    move for certain time then move back

    so im currently making a platformer for a school project and I want to make a horizontally moving platform. its plain simple I thought look at the pic too see what I made inside the create event there is movingright = 1 script and inside alarm 0 there is a movingright = 0 script and inside...
  11. T

    Am I able to make a "2 layer overhead 2D game" with GameMaker?

    Hi there community! I used Construct for a few years and wanted to switch it up to GameMaker, I do have little no 0 knowledge about coding but I do have a 2D top-down game planned. I wonder if it's possible to have like a (example). I have a walkway on the ground, and on the side there is a...
  12. D

    Making the mouse jump by a couple of pixels

    I want to make the cursor leap a couple of pixels when I fire a gun, I try like so windows_mouse_set(mouse_x,mouse_y - 0.1); but it leaps half way across the screen, no matter how large I make the number. Is there any way to just make the cursor jump like 2 pixels up when I fire a gun?
  13. MilesThatch

    GameMaker [3D Tutorial] Importing .obj models in Game Maker Studio 2

    GM Version: GM:S2 Target Platform: Windows Download: OBJ Importer Project file. Links: N/A Summary: You will learn the structure of an OBJ 3D file. We will go over each line of code of the included OBJ importer. We will make a custom 3D model, texture it, convert it using our importer and use...
  14. D

    Android Fast Bubble[Free]

    Hi everyone! my name is Daniel and im a young game developer,today im going to share my work with you,its about Fast Bubble a casual android game where you have to demostrate your habilities and reflexes,the game is for everyone who wants to spend a good time and compite with other people in the...
  15. T

    Windows Isometric Terrain Engine

    Hi everyone! This is just a really simple isometric terrain engine I created today. Its a simple engine where you can raise and lower the terrain with your mouse. The engine also includes slopes which will automatically appear to smooth out the terrain. A little player will spawn on the plain...
  16. B

    Legacy GM Dialogue for different objects

    Hey all. So currently I'm trying to design a narrative experience using GameMaker 1.4, and my idea is that my character walks around his room and examines his belongings (objects) and as he presses a button near them (say, space) and a text box appears and the player can read dialogue for the...
  17. G

    Asset - Graphics Huge High Quality Art Pack - File Size Limiations

    I spent the last few days making a huge art pack for the yoyogames marketplace. Sadly I can not upload it.... The 50 mb file size limitation makes it essentially impossible to upload high-quality art packs. You can view the trailer for the unreleased pack here - Is there any way to sidestep...
  18. C

    how can my Charakter dash?

    How can i Dash in direction 270(down) with the key "S" heres the code if (global.pause) exit; if place_free(x,y+1) {gravity = 0.5} else {gravity = 0} gravity_direction = 270; if vspeed > 10 {vspeed = 10} if keyboard_check(ord("S")) and !place_free(x,y+1) {vspeed+= 15}; (<- this doesnt work...
  19. Imperial

    Windows DS Map Save & Load System

    I Have one object when the game starts on the room and It has this Script globalvar save_data,filename; save_data = ds_map_create(); filename = working_directory + "Game.sav"; and when I make new other object I want to save It so when I open the game next time...It should re-create this is the...
  20. I

    Partner following the player

    Hello, is there a way possible to make a partner who follows you but doesn´t get stuck behind walls? With help I did some code to make a player who follows you but sometimes, he gets stuck behind a wall or something else and I would like to know how to fix that. This is code I use for the...
Top