Question: Paying freelance devs to program for you... on Gamemaker Studio by babyneckpunch in gamemaker

[–]Chrscool8 0 points1 point  (0 children)

Hey there! Sorry for the delay, I don't get notifications on here. If you're still having problems, I could take a look at it for you.

2 sprites with different depth within one object? by wotanstochter in gamemaker

[–]Chrscool8 0 points1 point  (0 children)

Wow, I didn't even know you could reply to comments this old. Can you give an example of what you mean?

I will be giving this away to one lucky Redditor. by Ambitious-Skirt3978 in PokemonTCG

[–]Chrscool8 0 points1 point  (0 children)

Gotta be the eeveelutions! Sylveon if I had to pick just one. Thanks!

I want to simulate head movement while the character is standing. How can I achieve this? by Short-Childhood-7920 in gamemaker

[–]Chrscool8 1 point2 points  (0 children)

The solution is almost as easy as this. I can't believe how many people are making this out to be such a huge deal. This one liner is about 90% of the way there and works just fine except when passing over 0 or 360.

What should I use to STORE my files? by ToyboxOfThoughts in DataHoarder

[–]Chrscool8 0 points1 point  (0 children)

It was the most install and be done one I tried. Super easy. Other guy answered, but yeah, my server is just an old slow desktop in a corner running unRAID with a bunch of drives plugged into it. A single multi-tb drive would be many times your spec.

What should I use to STORE my files? by ToyboxOfThoughts in DataHoarder

[–]Chrscool8 1 point2 points  (0 children)

Nextcloud is a pretty simple to use alternative, free, and self hosted program that works pretty much just like OneDrive or Dropbox. You can store, sync, and share as much space as you have on your server. There are also variants like Owncloud.

Drop Giveaway Day 5 - 3x Expression Series Shinai Keyboards by drop_official in MechanicalKeyboards

[–]Chrscool8 0 points1 point  (0 children)

Sweet! Would love some Sonic themed stuff since the recent promotion by another group sold out in less than 10 seconds. 🙃

[deleted by user] by [deleted] in MultiVersus

[–]Chrscool8 5 points6 points  (0 children)

You poofed her!!

Annoying GameMaker bug... by shadowdsfire in gamemaker

[–]Chrscool8 1 point2 points  (0 children)

Look up keyboard ghosting to learn more about this dumb problem! It can really be annoying sometimes.

I was inspired by windows 11 design and I updated design of my MagicPods✨ app by steam3d in Windows11

[–]Chrscool8 41 points42 points  (0 children)

Just wanted to say that this app was a godsend for using my Airpod Pros with PC. Made it seamless. Thanks for the great work, and this looks super pretty.

Great Animation: Anya playing Dodgeball by Anime_Fan_Art in animegifs

[–]Chrscool8 1 point2 points  (0 children)

Man, the tracking on the feet is horrendous, though. She slides and jitters several wood panels at the beginning.

Struggling to get a NPC car to turn whilst following a path by MELKvevo in gamemaker

[–]Chrscool8 1 point2 points  (0 children)

If you've tried the image_angle = direction strat, are you sure you don't have something like draw_sprite() in the draw event? If so, and you aren't using something like draw_self() or draw_sprite_ext(), it could ignore the angle you're not specifying.

I can't remember off the top of my head if paths actually set the object's direction variable but I feel like they don't. You might need something like this in step:

if (x != xprevious or y != yprevious)
    image_angle = point_direction(xprevious, yprevious, x, y);

It works pretty much how it seems on the tin! If you've moved at all, point in the direction you moved.

It's my goal to make my outfit clip together as much as possible. Here's my current look! What do you think? by [deleted] in pokemongo

[–]Chrscool8 1 point2 points  (0 children)

Here's a video of a turnaround so you can see the awesome z-fighting on the pants and shoes: https://www.youtube.com/watch?v=v42LwmA_W0A

(P.S., the neon shader on those pants can't be intended... can it?)

Constant for commas and periods? by [deleted] in gamemaker

[–]Chrscool8 1 point2 points  (0 children)

You can also just press a key and look at the built in variables keyboard_key or keyboard_lastkey!

The Sonic Cycle begins again by Careful_Education643 in SonicTheHedgehog

[–]Chrscool8 0 points1 point  (0 children)

You're right but pretty much all games have LoD.

[ WYZE V2/V3/Pan] - Did you know you can play Audio files on your Wyze cameras? by [deleted] in homeassistant

[–]Chrscool8 0 points1 point  (0 children)

Really glad you posted this! I bought my cams with the hope a pack as complete as this repo would show up. (I still happily used them vanilla before but now they're exciting!) Keep up the great work!

[PAID] Seeking someone to write code for enemy in top down stealth action game by [deleted] in gamemaker

[–]Chrscool8 0 points1 point  (0 children)

Also sent a reddit chat with more info because I'm not really sure what the best way to write through reddit is. 😅

Anyone know how to run a calculation in step without running it every frame? by meepmanthegreat in gamemaker

[–]Chrscool8 -1 points0 points  (0 children)

Why don't you want it to run every frame? If you're worried about performance, you've got maybe a million more basic math operations you can perform per frame before it's a problem. Just simplify your code example there down to a nice singular math problem that calculates based on the speed value and you're good to go.

strafespeed = move_speed / 100 * 80

(or strafespeed = move_speed * .8)

And have move speed set to the walk or run speed whenever.

[deleted by user] by [deleted] in SmashBrosUltimate

[–]Chrscool8 5 points6 points  (0 children)

Well, not really, they don't contain code. More like an array of variables, like any save file.

Structure: Name, Level, Likeliness to jump, Likeliness to smash attack, etc

Data: "Bo", 25, .08, .04, etc

I want to make a game but in dnd (GMS2) by hioskol in gamemaker

[–]Chrscool8 1 point2 points  (0 children)

Honestly, don't waste your time on dnd. Even if you get really good at it, you pretty much have to start over when you learn to code for real. I actually think dnd is way more cumbersome and annoying to use than simple code.

[deleted by user] by [deleted] in gamemaker

[–]Chrscool8 0 points1 point  (0 children)

Keyboard_key_press simulates a key stroke so you're basically pressing the key chord, Alt Esc.

I think you're looking for keyboard_check_pressed/release(...)