game maker

  1. V

    Windows Doesn't start "Game Maker"

    At startup, the mouse shows the download, but nothing else happens. In the "Game Maker" processes in the task manager, it appears for a few seconds and then disappears. I have Windows 10 There were no problems with other programs. Help please, maybe someone came across
  2. Z

    license issue

    game maker doesnt accept my license, upper cases lower cases "-" no "-", nothing works. is there a problem or what?
  3. Z

    game maker 14804

    i want to download game maker 1.4.804, any links?
  4. K

    Help me please! Game Maker

    I'm still working on my game. But ANOTHER PROBLEM arose. What happens is that I have two GLOBAL VARIABLESl. Score and another global. HiScore. The latter supposedly has to show the highest score obtained, and above all, when the score is lower, it must stop adding until it exceeds it. That's...
  5. O

    Android http_get return 0 and the returned string have IOException as value

    hello all I'm trying to find solution for this problem i have http_get request to php page that will do some database job and return some info. the code works fine on some devices but on other devices it return 0; and ds_map_find_value(async_load, "result"); have the value IOException this is...
  6. S

    cant get off ladder

    hi! so I put in code to make it possible for my character to go on a ladder and go up and down, but when I get on it, I can go as high as I want even though the character isnt touching the ladder object anymore. also, i cant move left or right on the ladder, or even jump off of the ladder, so...
  7. A

    Virus on compilation

    Weird situation, GM:S compile all with virus, virustotal confirm 6 of 67. I scanned my pc with Dr. Web cureit, but it says nothing found. Tried to again install license from yoyo games, get compiled, throw it on virustotal, 3 of 67. After hour, compiled it again, and got 6 of 67. Full scan...
  8. FoxyOfJungle

    Graphics Pixel-Art: In your opinion are they good?

    Hello, I have a problem. My friend and I are making a platform game about business for Android and Windows, a game where you need to build a wild mall (all 2d). I am the programmer who makes all the logic of the game, and my friend makes the art of the game, I told him that he can do it any way...
  9. J

    Legacy GM Game wont run anymore?!

    I tried to run the game and the console and everything booted (Compile works completely fine) but the game doesnt start?! why? Help!
  10. yvodlyn

     The Last Tower

    Hello everyone I would like to know, for this small game, if the shadows are placed correctly. Thx!!!
  11. FoxyOfJungle

    Is Steam's license permanent?

    Hello, I would like to know if the license for Game Maker Studio 2 purchased from Steam is permanent? Can I receive new updates with this license? It's worth buying a "bundle" of Desktop+Mobile+HTML5? Thank you :)
  12. B

    GML Keep text inside viewport help!

    Currently I have drawn text one scree via this code: { draw_text(45,y, "Level: "+string(global.level)); draw_text(45,y+16 ,"HP: "+string(global.hp)+"/"+string(global.maxhp)); draw_text(45,y+32 ,"EXP: "+string(global.expr)+"/"+string(global.maxexpr)); if global.hp > global.maxhp...
  13. B

    GML Random Enemy Spawns

    I already have the enemy damage and all of the sprites and obj's setup. How would I go about making the enemies spawn at a random time between 0-10 seconds and in different spots
  14. B

    GML Keep drawn text on screen

    I am currently designing a game and I have viewports turned on as well as text drawn onto the screen but the text does not stay and follow the viewport. How can I fix this? Code for my drawn text: { draw_text(x,y, "Level: "+string(global.level)); draw_text(x,y+16 ,"HP...
  15. V

    GML Add Health on touch

    Hello, I have recently made some code that allows you to pick up experience as well as earn levels, I would like to add it so when you pick it up it adds one health but doesn't exceed the max help. Here are my codes Code for my the experience adder: { global.expr+=1; with(other){...
  16. R

    Legacy GM Gravity with delta_time

    I was trying to add a system to make my game show no delay when playing and I started to have problems with gravity ... when multiplying the gravity by delta I started to see errors such as the player jumps very little when the game runs at 30FPS, but when the game increases to 60FPS it jumps...
  17. C

    Problems with html5

    Good day, can you find out how you can place 2 applications html5 on one page? Only 1 application works, when placing the second image on the same page, it does not work here's the code for one <html> <canvas id="canvas" width="999" height="499"> </canvas> <script id='edit_src'...
  18. Fredrik

    Demo Moor - 3D dungeon crawler

    A rogule-like dungeon crawler Links: Website Greenlight The first tread The second tread Download demo 3.1 * https://www.dropbox.com/s/lretngvrei9bduu/Moor_3.1.zip?dl=0 * News! Current demo version: "Moor demo 3.1" The demo was updated to this version: 21. march 2019 With this...
  19. R

    Help me with GML

    Hello guys i need help with my code. I create a object controller with this code: CREATE EVENT: switch1 = array_create(2); switch1[0] = obj_ground1; switch1[1] = obj_thorn1; switch2 = array_create(2); switch2[0] = obj_ground2; switch2[1] = obj_thorn2; world = 1; STEP EVENT: var input =...
  20. P

    GameMaker [ SOLVED ] repeat/for loop not working as intended

    This is the code: repeat (instance_number(obj_work_table)) { var xx = obj_work_table.x; var yy = obj_work_table.y; var notif = obj_notif_arrow_down; var notif_x = xx; var notif_y = yy - 450; // Create the arrow notification above the workbench notif_work_table =...
Top