bin.pol.social

perishthethought, do gaming w I just wanted to commend Croteam
@perishthethought@lemm.ee avatar

Great write up @bermuda. Croteam deserves a lot of praise for their great work.

If you’re into this game series, join us at:

!the_talos_principle

Todd_cross, do games w Anyone have good memories of (or still belong to) a gaming clan or guild?

I remember playing AOEII online many years ago someone asked me if I was in a clan and I said “No, I’m not Scottish”.

Nilz,

11

HeyThisIsntTheYMCA, do games w Anyone have good memories of (or still belong to) a gaming clan or guild?
@HeyThisIsntTheYMCA@lemmy.world avatar

No

SoapyYogurt82,

Interested in starting a clan for the clanless?

HeyThisIsntTheYMCA,
@HeyThisIsntTheYMCA@lemmy.world avatar

I didn’t say I wasn’t in one, just that it was lame

DeadlineX, do games w Anyone have good memories of (or still belong to) a gaming clan or guild?

When I was younger my parents got a new pc. It had a stupid Game Center trying to sell you games. Being a bored teenager who enjoyed games, I looked through it. I found a game called Dark Orbit. It was the only game I was ever in a clan/guild. I bounced around a few guilds, but I was always friends with the big guilds. I had my own guild for awhile.

One of my friends gave me the top guild because they wanted to start a new one and knew that I really liked their guild tag. Everyone used to hang out on GSC which was a chat client nobody seemed to have heard of. It was like a precursor to discord. I had a lot of really good times hanging out with my guild mates. We sometime just hung out and talked without even playing.

linearchaos, do games w Anyone have good memories of (or still belong to) a gaming clan or guild?
@linearchaos@lemmy.world avatar

Dark age of Camelot, had a guild made up of mostly locals. Did a custom website, scraped Mythics rankings, put in interactive maps, scroll trading system. It was all a hoot, moved to Warcraft after. Solid group of good people.

BillygotTalent, do games w Anyone have good memories of (or still belong to) a gaming clan or guild?

When Youtube Gaming was still young I played Call of Duty with people from a gaming community called Hupit.com, which was founded by a prominent COD youtuber. With Covid I found people through Reddit for Simracing, and we have done tons of races together in the last 3 years.

JakenVeina, do gaming w What is something (feature, modes, settings...) you would like to see become a standard in video games?

Borderless Windowed mode. Seriously, there is 0 excuse for PC games to not support it, it’s 2023.

Plume,

I’m gonna be honest, I never really understood what it did. The difference between fullscreen and windowed mode is kind of obvious, but borderless? I get what it does, it’s like windowed mode but borderless and it can take the whole screen. But then why not just make it fullscreen? I don’t understand it.

And especially when apparently some games run better with it? Which… I don’t know, I just don’t understand it.

JakenVeina,

It means you can take focus away from the game without it throwing a hissy fit. I.E. you can click out of it.

naticus, do games w What's your favorite game through the ears of Original Soundtrack?

In no particular order:
Witcher 3
Trails/Kiseki series
Mass Effect series
Outer Wilds
Doom 2016

Leate_Wonceslace, do games w What's your favorite game through the ears of Original Soundtrack?
@Leate_Wonceslace@lemmy.dbzer0.com avatar

Megaman 2

Kazumara, do gaming w What is something (feature, modes, settings...) you would like to see become a standard in video games?

Lefty mode would be nice. I’m tired of rebinding movement keys in every game.

Bartsbigbugbag,

I’m a lefty, but there was no way in hell I was moving the mouse to the other side every time I used the family computer, so I just learned how to use my right hand.

Kazumara,

As a kid I had my own PC early and my dad set it up left handed for me. Now I’ve played games left handed in general for 23 years, and shooters in particular for 15 years already, it’s too late to relearn :-)

FireTower, do games w What's your favorite game through the ears of Original Soundtrack?
@FireTower@lemmy.world avatar

I feel like Payday 2s sound track is underappreciated in general conversations about game music.

It has gotten a driving beat to it and instills both anxiety and courage. Not to mention how they have a system similar to the L4D2 Director system where the gameplay is perfectly matched and foreshadowed by the music.

jjjalljs, do gaming w What is something (feature, modes, settings...) you would like to see become a standard in video games?

Probably difficult for technical reasons, but it would be cool if I could rewind the game arbitrarily in games where you can quicksave/load. Like I can save and try the thing and reload if I don’t like the results, but it’d be neat if I could just rewind.

tal,
@tal@lemmy.today avatar

Rewinding is technically possible, and there are games that incorporate rewinding into the game, like Braid or Prince of Persia: Sands of Time. Probably some newer ones. However, that only works if the game developer conforms to a lot of constraints. I don’t think that it will ever be a standard feature on all video games.

  • Not all functions are “reversible”; you can’t just run everything “backwards” easily on a general-purpose computer. One specific operation that is famously not-easily-reversible – and that we are so confident that this is not easily reversible that we make a lot of computer security rely on it – is multiplying two prime numbers together. So you’d have to impose dramatic constraints on how games can be written to provide the ability to just say “start running the game in reverse”. (Related trivia: the question of whether the real world can theoretically be run in reverse if you could look perfectly at everything in the universe for just one moment, the arrow of time, is, as I understand it, something of an open question in physics.)
  • One tactic for “rewinding” is to basically store checkpoints periodically and then retain enough information, like the player’s inputs, such that one can basically “fast forward” from a checkpoint. If you can “fast forward” cheaply enough in terms of CPU time, then rewinding to a checkpoint, and then fast-forwarding to a given point, once for each frame, looks like you’re running in reverse. This is basically how modern movie codecs work today: you have keyframes that are basically a “checkpoint” of a frame that are stored, maybe every few seconds or so. Then you have information necessary to compute the next frame from the existing one. So when you seek backwards in a movie, internally what a movie player is likely doing is seeking backwards to the keyframe prior to the time where you’re trying to seek to, then playing forward. That “seek back to a checkpoint, then play forward” is a lot more technically-easy to do than to require a game to truly be reversible, since in many games, it’s possible to store a fairly-small amount of information to record the game world at that point in time – and “play forward”. But many games also can’t store their entire world in a small amount of space, and for some, it’s hard to perform saves cheaply-enough in terms of CPU time – constantly and frequently-enough, maybe every couple seconds. If you can’t reduce the game state to a very small amount of information, then you are only going to be able to rewind so far. Implementing this is, today a requirement of a number of multiplayer games – nearly all multiplayer game engines basically rely on each computer involved being able to deterministically generate the same world state on each participating computer. One technique to reduce apparent latency to other players is to do client-side prediction, predict what the other user is going to do, like continuing to walk in the same direction that they’re walking, and then render each frame as if they had done that. Sometimes, that prediction is incorrect, and in those cases, they’re going to need to be able to re-generate the world state; what they do is constantly internally checkpoint and then roll world state forward by replaying inputs when they actually learn what that other player was doing. So some games and game engines already basically implement the internal functionality required for this sort of approach, at least over a limited period of time. But it requires the developers to constrain what they do throughout the game to some degree.
TheOgreChef, do games w What's your favorite game through the ears of Original Soundtrack?

Mega Man 2. Every song on every level is an absolute banger. EVERY SINGLE ONE. I’ll die on that hill.

Shoutout to Control though for that one song in that one level (if you know, you know).

Ninja edit to add River City Girls 1 &2, both are excellent.

lustyargonian, do games w What's your favorite game through the ears of Original Soundtrack?

As an Asian and a fan of Doom Eternal, I really enjoyed Shadow Warrior 3’s soundtrack.

Sincap, do games w What's your favorite game through the ears of Original Soundtrack?
@Sincap@reddthat.com avatar

My personel favs are : GTA VC, Hades and TLOU. I listen those OSTs for years and they still hit hard.

  • Wszystkie
  • Subskrybowane
  • Moderowane
  • Ulubione
  • test1
  • NomadOffgrid
  • esport
  • ERP
  • rowery
  • krakow
  • Gaming
  • Technologia
  • muzyka
  • Spoleczenstwo
  • sport
  • informasi
  • tech
  • healthcare
  • FromSilesiaToPolesia
  • fediversum
  • turystyka
  • Psychologia
  • Cyfryzacja
  • Blogi
  • shophiajons
  • retro
  • Travel
  • gurgaonproperty
  • slask
  • nauka
  • Radiant
  • warnersteve
  • Wszystkie magazyny