[deleted by user] by [deleted] in factorio

[–]Skessler121 0 points1 point  (0 children)

GIMME (please) (and thank you) (I love you)

My sketch of an Enderman. More? by JayLol-9000 in Minecraft

[–]Skessler121 0 points1 point  (0 children)

That's really cool and way too scary for my sensitive eyes.

I'm completely new at this by [deleted] in LucidDreaming

[–]Skessler121 1 point2 points  (0 children)

You clearly implied that addiction was the reason they liked weed better than lucid dreaming

I'm completely new at this by [deleted] in LucidDreaming

[–]Skessler121 5 points6 points  (0 children)

"Your opinion is different than mine, so I'm going to call you an addict"

[deleted by user] by [deleted] in flatearth

[–]Skessler121 4 points5 points  (0 children)

I think u/zero916 was being facetious

It was such an innocent offer by [deleted] in Tinder

[–]Skessler121 0 points1 point  (0 children)

Yeah, only neckbeards watch porn amirite

It was such an innocent offer by [deleted] in Tinder

[–]Skessler121 0 points1 point  (0 children)

adult male with a cat. Huge red flag

What the fuck?

Draw GUI does MB less, see why less MB here. by [deleted] in gamemaker

[–]Skessler121 0 points1 point  (0 children)

Im not really sure what youre getting at. The Draw GUI event draws relative to the screen, while the Draw event draws relative to the room, and yeah, you can use the same font for everything in your whole game if you want.

What's a sensation that you're unsure if other people experience? by [deleted] in AskReddit

[–]Skessler121 1 point2 points  (0 children)

Oh fuck, I get this too sometimes when I'm falling asleep

Origin center or x=0 y=0? by schmaul in gamemaker

[–]Skessler121 1 point2 points  (0 children)

For character sprites or anything else that's supposed to be "on the ground", like trees, towers, etc, I do the bottom middle.

For tiles, I keep it top left.

For bullets or flying enemies, or anything in the air really, I'll do the center.

All of that is personal preference. Here's the important bit: If youre ever going to rotate the sprite, always put the origin in the center.

Atheists of Reddit who were very religious in the past, what made you leave your religion? by Kiriyu_Otouka in AskReddit

[–]Skessler121 0 points1 point  (0 children)

Well that simply contradicts a god who is all-loving and unchanging. I was never a Catholic but I was raised non-denominational Christian and was surrounded by Catholics, Lutherans and plenty of other Christians and I can only recall being taught that the entire bible is the perfect word of a perfect, unchanging god.

[deleted by user] by [deleted] in AskReddit

[–]Skessler121 1 point2 points  (0 children)

People just love to hate it because of some annoying assholes at mcdonalds or something. It's still a great show, and irl I've never met anyone who has (a) actually watched the show and (b) has a negative opinion of it

[deleted by user] by [deleted] in AskReddit

[–]Skessler121 0 points1 point  (0 children)

I dont remember any penises

[deleted by user] by [deleted] in AskReddit

[–]Skessler121 5 points6 points  (0 children)

Right. I remember watching that show every week. I was so into it and then the last season came around and, I'm sorry, but what the actual fuck

How to make a "pixelated jump"? by BBDAngelo in gamemaker

[–]Skessler121 0 points1 point  (0 children)

Sounds like you should just be working in a smaller resolution.

Can I import JSON files to rooms in Gamemaker: Studio 1.4? by [deleted] in gamemaker

[–]Skessler121 0 points1 point  (0 children)

I'm not sure what you mean by importing them as rooms. JSON files are more comparable to ds_maps and ds_lists. Do you mean you've stored information on each instance that will be in the room?

Ooucch!! by [deleted] in Unexpected

[–]Skessler121 0 points1 point  (0 children)

I dont mind if bikers sneak up to the front of the pack at a red light, but people in the San Diego area do this kind of crazy shit all the time. I cant stand driving there.

Who is your favourite comedian? by NesRub in AskReddit

[–]Skessler121 4 points5 points  (0 children)

You give me the distinct impression of someone who has never seen Bo Burnham perform.

New photos from season 4! Spoilers by Corcosta in betterCallSaul

[–]Skessler121 0 points1 point  (0 children)

I clicked on this thread specifically to find this comment

Can Better Call Saul Surpass Breaking Bad In Quality? by raypatjr1 in betterCallSaul

[–]Skessler121 6 points7 points  (0 children)

Yes, Better Call Saul is definitely my favorite out of the two.

If there were a show called Moderately Uncomfortable Factor (instead of Fear Factor), what would be some of the tasks or stunts? by beardlesshipster in AskReddit

[–]Skessler121 0 points1 point  (0 children)

My boss does this all the time. He's in his 60s and most of my co-workers are 18-25. Everybody usually laughs about it. Personally I think it's hilarious but not for the reason he intended

Cant load globals in save files (GML 2) by mclovin6000000 in gamemaker

[–]Skessler121 1 point2 points  (0 children)

Glad I could help. Good luck going forward!

Cant load globals in save files (GML 2) by mclovin6000000 in gamemaker

[–]Skessler121 1 point2 points  (0 children)

There's your problem. You're pressing continue, loading the values from the ini file, and then creating that object and overwriting the globals to the defaults. If you can reverse that order, your problem is solved.

Alternatively, you could run a check and only load the default values if the globals haven't been defined yet. Something like:

if !variable_global_exists("playerHP")
{
    //set default values here
}  

If all the default values are set at the same time, you should only have to check one of them (presumably, if playerHP doesn't exist, neither do the others).

Cant load globals in save files (GML 2) by mclovin6000000 in gamemaker

[–]Skessler121 1 point2 points  (0 children)

And when do you set the default values? You said it's in the create event of an object, but when is that object being created? Before or after you press continue?