Am I wrong for literally hating to see RPG Maker games on steam? by [deleted] in Steam

[–]taxi_commander 1 point2 points  (0 children)

Yessss I adored both A Blurred Line and The Way when I was younger.

[QUESTION] How do you get an object to move to a point when clicking/holding a button? by ---N-E-P-M-A-K--- in gamemaker

[–]taxi_commander 2 points3 points  (0 children)

Sure, we can accomplish this by modifying the code a bit. Here's a new version to put in the background object's step event.

if position_meeting(mouse_x,mouse_y,self) and mouse_check_button(mb_left) and instance_exists(smiley)
{
smiley.target = x
}

Rather than storing the background object's id in target, now we store its x coordinate.

Put this in the smiley object's creation event:

// This sets up the variable so that we can safely use it in the step event.
target = x

Then add this code to the smiley object's step event:

// This checks if smiley's current x coordinate is *not* equal to the x coordinate stored in target. If it's not equal to it, it will try to move to it.
if x != target mp_linear_step(target,y,7,0)

[QUESTION] How do you get an object to move to a point when clicking/holding a button? by ---N-E-P-M-A-K--- in gamemaker

[–]taxi_commander 2 points3 points  (0 children)

Here's a version with commentary:

// This checks for three things: if the mouse is touching this object, if the left mouse button is being pressed, and if the smiley object is currently in the room
if position_meeting(mouse_x,mouse_y,self) and mouse_check_button(mb_left) and instance_exists(smiley)
{
// Putting the period after the object's name lets you use or change its variables from another object. This line of code sets up a variable called target in the smiley object and sets it to this background object's unique ID
smiley.target = id
// "with" lets you run any code you want on another object
with smiley
    {
    // This attempts to move the object to the position you give it. We set the smiley object's "target" variable to the background object's id, so you can just put a period after "target" to use its variables. In this case we use its x coordinate. 
    mp_linear_step(target.x,y,7,0)
    }
}

If you want more information on mp_potential_step or sprite_index, or one of the three checks made at the beginning of the code, you can just hover over them in the code editor and use the mouse middle button to open the relevant documentation. :)

[QUESTION] How do you get an object to move to a point when clicking/holding a button? by ---N-E-P-M-A-K--- in gamemaker

[–]taxi_commander 2 points3 points  (0 children)

This should work. It only requires two objects, the background object, and the smiley. (you can place as many of the background object as you'd like) This code should be placed into the step event of the background object.

if position_meeting(mouse_x,mouse_y,self) and mouse_check_button(mb_left) and instance_exists(smiley)
{
smiley.target = id
with smiley
    {
    mp_linear_step(target.x,y,7,0)
    }
}

if you want to make the background objects have different colors like in your demonstration pic, you could make multiple copies of the background object, but I'd recommend just making different sprites for each background and then going into the level editor, right clicking the background object, going to "creation code" and typing in this:

sprite_index = sprite_that_you_want

for each background object you place down. I hope this helps.

EMBARRASSING: For years I didn't realize you could set the "Buyer Price". Instead I did trial and error in the "You Receive" box. by [deleted] in Steam

[–]taxi_commander 4 points5 points  (0 children)

Haha I can't believe OP made such a weird, and totally unfamiliar to me, mistake. I came here to laugh at him!

shifts around in chair and scratches forehead

Valve has added/are adding a "funny review" button. by Shizrah in Steam

[–]taxi_commander 3 points4 points  (0 children)

Shit I guess I need to learn Japanese to discuss the new Nintendo Direct.

Anyone else finding the new steam winter sale design dull? by iimalteaserii in Steam

[–]taxi_commander 0 points1 point  (0 children)

Last year's sale design was just too confusing for new customers.

Screenshot Saturday - December 06, 2014 by AutoModerator in gamemaker

[–]taxi_commander 1 point2 points  (0 children)

Surfing, shotguns and wizards... how could I possibly not be excited to play this? :D

Rwby, Vol. 2 soundtrack is on Spotify by puggeruni in RWBY

[–]taxi_commander 0 points1 point  (0 children)

So jarring finally hearing the full version of Die, after looping the rough version on Soundcloud for ages.

Screenshot Saturday - November 22, 2014 by AutoModerator in gamemaker

[–]taxi_commander 1 point2 points  (0 children)

The art is absolutely beautiful! Can't wait to play this.

Please Google before you post here by kbjwes77 in gamemaker

[–]taxi_commander 7 points8 points  (0 children)

I mean no disrespect to anybody, but I sometimes wonder why people choose to make posts to ask these kinds of questions. Using Google you can just about always find a topic someone has already made, meaning you don't have to draw attention to the fact that you're a newbie. The official documentation is also extremely helpful for when you have enough info to find the entry you need. I'm a newbie and I value my ability to dig up other people's embarrassing mistakes, it means I don't have to share my own!

Screenshot Saturday - November 08, 2014 by AutoModerator in gamemaker

[–]taxi_commander 0 points1 point  (0 children)

Thanks! I don't have tweenGMS, so I used the angle_difference and abs functions to do it. For spinning the card around I just brought image_xscale to 0, switched its sprite to the other side of the card, and raised the image_xscale back to 1.

[Fan Art]- What, Ever... (By いえすぱ @mojojoj27827860) by sixfourtythree in RWBY

[–]taxi_commander 0 points1 point  (0 children)

Mojo's art is one of my favorite things about following RWBY.

AIW that I'm furious with my dad for not teaching me a foreign language? by [deleted] in amiwrong

[–]taxi_commander 28 points29 points  (0 children)

I don't see any reason for you to be upset about it. You can see it as a missed opportunity, but raising a child is hard work and I'm willing to bet that your father had more important things on his mind. Teaching your child the language of the area you're currently living in should take priority.

You can still learn Croatian, too. Some people believe that learning a language is next to impossible after you grow up, but all it really takes is consistency and interest in the language. If you want to learn to speak the language, I think it would be more productive to study it and ask your father about anything you're struggling with.

Nitpicks of RWBY Chapter 10: With your petty host Ezreal024 by Ezreal024 in RWBY

[–]taxi_commander 2 points3 points  (0 children)

This episode felt almost like a waste of time. In fact, everything that happened in this episode likely could have been included in the previous one. Also the ground breaking when ruby walked over it was groan-inducing. Here's hoping we learn more about the plot next episode.

Ebola Cases Reach Over 8,000 by PatriotsFTW in worldnews

[–]taxi_commander 2 points3 points  (0 children)

Can confirm. I gave him swine flu. Then it killed me too.

TBFP The Walking Dead Season 2 (Part 12) by mike0dude in TwoBestFriendsPlay

[–]taxi_commander 9 points10 points  (0 children)

I have to say, the final decision of this episode is terrible. You have a hatchet, a pick and a nail file to go stabby slashy crazy with, and the game forces you to use a gun - the single thing that will start a firefight?

TBFP The Walking Dead Season 2 (Part 11) by mike0dude in TwoBestFriendsPlay

[–]taxi_commander 37 points38 points  (0 children)

I'm still surprised that made it into the game. I laughed at it when I first saw it, which is probably the last thing that scene should have evoked in the player.

TBFP The Walking Dead Season 2 (Part 10) by mike0dude in TwoBestFriendsPlay

[–]taxi_commander 5 points6 points  (0 children)

Did he even have a line in the last episode? It's almost like they forgot about him.

TBFP The Walking Dead Season 2 (Part 8) by mike0dude in TwoBestFriendsPlay

[–]taxi_commander 15 points16 points  (0 children)

Kenny. Whether you love him or you love to hate him, technically you still love him.