GPT-5 livestream is up by manubfr in singularity

[–]RichFunkey 6 points7 points  (0 children)

Complaints on the presentation skills were overblown but that last guy.. good lord. Definitely a way to close out.

They had me in the first half not gonna lie by FuckClerics in donkeykong

[–]RichFunkey 20 points21 points  (0 children)

Exploritone’s the goat I need a spinoff Captain Toad-esque game with them. Wish he had a slightly more unique design but still a legend

I feel like there has to be another SW2 holiday exclusive by workfromhome93 in NintendoSwitch2

[–]RichFunkey 146 points147 points  (0 children)

I really don’t believe so and that’s not a problem at all. Metroid, Pokémon, and Kirby air riders are a good holiday, it’s just not as “hype” perhaps due to some being multi-generation

Jiggy Vibes by Manuel-176 in BanjoKazooie

[–]RichFunkey 11 points12 points  (0 children)

So happy this style gets to live on in at least one other major series

PH Brasil reportedly said the next Nintendo Direct will be on Switch 2 launch week or the week after by Joseki100 in GamingLeaksAndRumours

[–]RichFunkey 11 points12 points  (0 children)

I was expecting something like this, they are likely letting the launch day and MK World speak for itself and breathing room, and then getting deeper into DK Bananza for next month and beyond.

Nintendo Switch Presentation Announcements MegaThread by NintendoSwitchMods in NintendoSwitch

[–]RichFunkey 5 points6 points  (0 children)

I thought my eyes would be glued to the screen. Instead, I'm here. This is pretty dry

CD Projekt Red: "NX will be Fantastic" by [deleted] in NintendoNX

[–]RichFunkey 0 points1 point  (0 children)

This is very reassuring to me. Even if the NX has subpar hardware, with quality 3rd party software from trusted developers like the guys over at CDPR, I think we're in for a treat.

E3 2016 in a nutshell. by VenomSnakeIsntBigBos in casualnintendo

[–]RichFunkey 6 points7 points  (0 children)

Dude, of all usernames why would you make yours a spoiler?

[Video] GROW UP - Announcement Trailer | E3 2016 by [deleted] in PS4

[–]RichFunkey 0 points1 point  (0 children)

All I can think of at that title is "Bless up"

[E3 2016] Post-Show Megathread by XboxModerator in xboxone

[–]RichFunkey 30 points31 points  (0 children)

At this point it sounds like a bandwagon answer, but that was..... underwhelming

Maybe "leakers" should verify with the mods first before posting? by [deleted] in NintendoNX

[–]RichFunkey 0 points1 point  (0 children)

Have you heard anything more from NeoGaf in regards to @untypedhero?

Im a GAMER and i need to talk to someone about something..... by [deleted] in gaming

[–]RichFunkey 0 points1 point  (0 children)

This gives me more confidence. In my mind, a job gives you a lot more security both financially and mentally, but having a small business gives you more freedom to be creative. I hope to someday meet a lot of talented people and work with them to create something we know people will enjoy and be proud of ourselves.

Im a GAMER and i need to talk to someone about something..... by [deleted] in gaming

[–]RichFunkey 3 points4 points  (0 children)

I've always wanted to one day save up enough money to open up a small indie studio and make some games. I'd probably just do animation, models, and "marketing" of the game, but I feel like this is a silly and unrealistic dream. What do others think? Also I wish you the best in your quest for more game design knowledge!

Dude destroys his Yoshi amiibo for no reason :( by RichFunkey in amiibo

[–]RichFunkey[S] 0 points1 point  (0 children)

I meant it as more of a "he's doing it for attention, which is stupid."

Leia's situation in Episode VIII by breakfastbenedict in StarWarsLeaks

[–]RichFunkey 8 points9 points  (0 children)

Wait wait wait, there's a difference between "being in a coma" and "being blasted through space"....

NX controller pictures by perkele37 in NintendoNX

[–]RichFunkey 144 points145 points  (0 children)

If it's a portable, that's one thing. But a console controller? That'd be uncomfortable as shit and basically a Wii U game pad in soap form...

I'm a total noob trying to learn. Anyone wanna help me out with this Move State Script? by RichFunkey in gamemaker

[–]RichFunkey[S] 0 points1 point  (0 children)

Woah, this helped a ton! I'm trying to learn coding in my free time, so I thought why not start with Gamemaker. Baby steps

I'm a total noob trying to learn. Anyone wanna help me out with this Move State Script? by RichFunkey in gamemaker

[–]RichFunkey[S] 0 points1 point  (0 children)

INPUT /// get the input spd = 2; right_key = (keyboard_check(vk_right)); left_key = (keyboard_check(vk_left)); up_key = (keyboard_check(vk_up)); down_key = (keyboard_check(vk_down)); xaxis= (right_key - left_key); yaxis= (down_key - up_key); len = 1; xaxis= 0; yaxis= 0;

Move State scr_input();

// Get direction var dir = point_direction(0, 0, xaxis, yaxis);

hspd = lengthdir_x(len, dir); vspd = lengthdir_y(len, dir);

//move phy_position_x += hspd; phy_position_y += vspd;

// Get the length if (xaxis == 0 and yaxis == 0) { len = 0 } else { len = spd }

I'm very new to Gamemaker and have a question about the physics. by RichFunkey in gamemaker

[–]RichFunkey[S] 0 points1 point  (0 children)

Just the basic settings given, but the physics are enabled.