push

  1. xS89Deepx

    BOX and wall collide

    How to stop BOX when collide with wall, the box don't stop when collide with wall, it just going through the wall, need help :) here is my code --> // Horizoltal push if (place_meeting(x+hspd/2,y,obj_box)) { var _block= instance_place(x+hspd/2,y,obj_box); with(_block) { x...
  2. S

    Push Execution Error...

    Hi, im making a multiplayer system on my game, im desenvolving a menu, nothing uncommon.. but i receive this strange error when i enter the room that contains the object that this code is in... Push :: Execution Error - Variable Index [3] out of range [3] This is the code that is giving me...
  3. RizbIT

    Asset - Extension firebase cloud messaging extension issues

    Ive tried the new push notifications extension for Android: https://marketplace.yoyogames.com/assets/10451/firebase-cloud-messaging-ext I set it up following the instructions here...
  4. Kleff

    GameMaker mp_potential_step

    I have a small problem with collision and mp_potential_step if I push the enemy back , then the enemy gets stuck in another enemy and they don't move anymore Is it possibility that enemy push back other enemys like a chain reaction with many enemys ? I make this here without...
  5. G

    GameMaker 2D platformer push block troubles

    Hello I am making a 2D puzzle platformer for my university final, I have very very little experience with programming and can only do pseudo code(and not too well at that) but I am having troubles making a block push left and right. For the platforming I just followed the Shawn Spalding tutorial...
  6. LeonDr

    Question - IDE Cannot push to Github anymore - GitHub Login Dialog does not work

    I understand that there were some changes on GitHub that required changes to GameMaker Studio. So I recently upgraded to the latest version of GameMaker IDE: 2.3.4.580 However, when I want to push my changes I get this new GitHub Login Dialog. When I provide my GitHub credentials, nothing...
  7. Scienitive

    GML Need help with physics

    Hello I recently learned about GameMaker's physics and added that into my game but I have a problem and I have no idea how to solve it. My game is a platformer game. In my game there are some movable (dynamic) objects. Player can push these blocks. When they push more than one block at a time...
  8. RizbIT

    Push the Payload!

    Using https://help.yoyogames.com/hc/en-us/articles/360024582652-Android-Remote-Push-Notifications-Using-Firebase-FCM Sending Test notifications from Firebase cloud messaging console using the test device fcm token. Now im receiving push notifcations as expected. When I click the notification...
  9. Klanes

    Player being pushed by a flying block

    Hello everyone, first, sorry for my English. I'm a complete coding noob, but I love to get in trouble creating some very very very basic games xD In the game you must dodge some flying blocks. This blocks can push the player if he can't climb on top of them (or dodge them). Everything seems to...
  10. RizbIT

    Apple push notifications and server port

    making something for a client in iOS. I want to be able to use Apple push notifications. But to use them port 2195 outbounc needs to be open / forwarded for requests. but as client is with godaddy shared hosting they have said for security reasons they cant open those ports. Has anyone else...
  11. T

    Pushing blocks

    I am new to GameMaker and I have to use GameMaker 8.1 Lite for a school assesment, all I need to know is how do I make it so when I walk into a box (obj_box) I can push it with me? I do not want to change any sprites when pushing.
  12. Appsurd

    Android Push notification extension requires significant update

    A few months ago, I (finally) moved to GameMaker Studio 2. Converting all apps (Android and iOS) was relatively easy, so that's great! Many minor things have changed in GMS2, including push notifications: previously, the GCM (Google Cloud Messaging) was used, and now FCM (Firebase Cloud...
  13. M

    The best box pushing mechanic for a platformer

    I was told to start this thread. Anyway I have been struggling on how to do pushable boxes in a complicated level design. I lave slopes and gaps that can (will) also affect the boxes in the game. Of course Im not doing real physics. Im trying to pull off a basic gravity with simple character...
  14. E

    How to find the angle of nearest point where the object is not colliding with other object?

    Hello, people. How to find the angle of the nearest point where object will not collide other object like in Super Mario Maker, where if you put player inside the block, he will be pushed away from it. How to perform it? For example, if the first object spawns in the same place as second object...
  15. JeanSwamp

    GameMaker Push/Pull objects

    Hello, I'm prototyping some sort of moveable mechanic for pushing and pulling blocks for a 2D platformer. This is the raw idea and is not 100% accurate, and I doubt is very efficient, so would be great if you guys with more experience and knowledge could help me clean up this idea. Basically...
  16. PlayerOne

    GameMaker [SOLVED] Pulling a Block/Crate?

    Self explanatory. Found videos on how to push blocks but not pull them. Just need to move the block on the x axis in the direction of the player. The code I'm using for pushing the block is this: if (place_meeting(x+hsp/2,y,obj_crate)) { var block = instance_place(x+hsp/2,y,obj_crate)...
  17. M

    global array issues

    Hello I am trying to make two objets interacting each other just using mouse button and position First, is there a function doing that (like place_meeting but with 2 static objet ) ? Second this is my code : /// objet 1 is a case storing (or not) a string value name CREATION CODE...
  18. Kaliam

    Windows (git) Push Error: user cancelled certificate check:

    I can't seem to push my projects to git when using the built in gms2 interfaces. I am trying to push to a private project and I have entered all of my credentials and url into the Authentication section of the git plugin preferences. I have tried using both of the git url forms to no avail...
  19. T

    how to make a constant push on the player [SOLVED]

    okay, so I'm making a platformer and I want to create levels where wind is constantly pushing the player in one direction. SO if the player moves to the right he is slowed down, sped up to the left and just pushed to the left when not moving. Basically I want the movement speed to always be...
  20. L

    Legacy GM Creating Walls that Destroy Push Crates and Themselves on Collision

    Hey everyone! I'm creating a simple puzzle adventure game where you have to use various crates to obtain keys and flip switches to open doors within a maze. You also must avoid search lights and guards while solving the puzzles. So far, I've got most features in no problem. I have some walls...
Top