bin.pol.social

Blxter, do gaming w What's the most toxic game community you know of?
!deleted4407 avatar

deleted_by_author

  • Loading...
  • Ashe,

    Told someone I played rust and they asked if I was racist or suicidal because those are apparently the qualifiers.

    It really does bring the worst out of humanity, but at the same time I’ve met and known people for years who were my neighbors or even rivals

    Zikeji,
    @Zikeji@programming.dev avatar

    Was looking for this lol.

    I bought a Rust ages ago, back when the development basically had it turning into a new game every year. Maybe I just got lucky back then, but never had a toxic interaction.

    Cut to last year, when a group of guild members went to Rust so I redownloaded it after 5 years. Most of us only lasted a few hours and we tried half a dozen servers lol.

    Blxter,
    !deleted4407 avatar

    deleted_by_author

  • Loading...
  • Zikeji,
    @Zikeji@programming.dev avatar

    Those people just have not had the misfortune of playing Rust.

    equalszero, do piracy w DRM removal tool was taken down from github. If you can, please download it from gitlab before its taken down too
    @equalszero@lemmy.dbzer0.com avatar

    Someone upload this one to sourcehut. I’m really curious to see how Drew will response to DMCA like that

    Kata1yst, do gaming w What's the most toxic game community you know of?
    @Kata1yst@kbin.social avatar

    LoL

    bionicjoey,

    100%. I stopped playing a decade ago, but when I played I was always amazed at the behaviour it brought out in people. I would watch people who I considered friends IRL turn into abusive jerks when I played with them. It’s this weird prisoner’s dillemma of a game where the psychology of the game appears to encourage ganging up on the weakest player.

    squaresinger,

    That’s what happens if you design a game in a way that makes it worse to have a bad player in your team than no player at all.

    Stillhart,

    League was the poster child for toxic communities a decade or so ago when I played. It must have gotten better (it certainly couldn’t have gotten worse!) if this isn’t the top comment by a mile.

    CoderKat, do gaming w Phil Spencer announces Call of Duty deal with PlayStation

    I wonder what they got from Sony. Ideally it’d be some promises about Sony reducing exclusives themselves. Exclusives suck for everyone but the company that owns the exclusive console. I don’t personally own an Xbox, but I still want Sony to cut it out with their exclusives.

    PixelPioneer, do gaming w What side content should I do after finishing TOTK?
    @PixelPioneer@beehaw.org avatar

    Go find all of the armor pieces in the game. Some are quite tricky to find. Then if you want the extra challenge, upgrade all of that armor to its max.

    weew, do gaming w Why do video game devs tie game mechanics to framerate?

    because it’s easier.

    You have one “frame” where you just do everything: read the player input, do whatever actions, calculate collisions and physics and whatever, and draw everything when all those calculations are done.

    Then you move on to the next frame and do everything again. Everything lines up all the time and always happen in the same order. Simple, quick, and consistent.

    To decouple calculations and framerate, you don’t know when the game will try to draw something. It might be in the middle of when you’re calculating collisions, or moving the units, or calculating physics. Or you might end up doing multiple calculations while the GPU is slow and can’t draw anything.

    So you have to add an extra layer in between, probably saved to some memory somewhere. Now every time the GPU draws something, it has to access that memory. Every time you calculate something, you also access that memory. Let’s hope they DON’T try to read and write on the same spot at the same time, that could cause bugs. And so much memory access, you’ve basically doubled your memory bandwidth requirements.

    It’s complicated, more resource intensive, and introduces potential bugs.

    teawrecks,

    And not just easier, but cheaper. On lower end platforms it’s expensive to do floating point calculations all over the place because you don’t know how long it’s been since the last frame. If you can assume the frame rate, you can get a lot of performance back too.

    Galactic_hitchhiker, do piracy w DRM removal tool was taken down from github. If you can, please download it from gitlab before its taken down too

    I am glad that others saved the source code elsewhere and kept it alive. How does deDRM_tools by noDRM avoid takedown due to piracy? I use that on a regular basis, and I am afraid that it might be taken down someday, and surprised that it is alive for so long. How has it stayed alive for so long?

    ShaunaTheDead, do gaming w Why do video game devs tie game mechanics to framerate?
    @ShaunaTheDead@kbin.social avatar

    In the past, games were developed with specific hardware in mind. They didn't really think of how their game would run on modern PCs 25+ years later. Some games even used that as a feature, famously, Space Invaders devs noticed that the game started speeding up as players destroyed more of the enemies because it didn't have to render them and so it made the game harder as you progressed which was more fun!

    By the way, there are ways to run retro games with speed limiters, you've just got to look into it more.

    NuPNuA,

    Remember all those early 90s PC titles that were tied to processor speed so they just ran at a mental pace when the next generation launched?

    surrendertogravity, do gaming w What side content should I do after finishing TOTK?
    @surrendertogravity@wayfarershaven.eu avatar

    I completed all of the shrines before I beat the game, and found it enjoyable. I also really enjoyed running around the depths collecting all the lightroots. I enjoy exploring caves and wells too, so that’s next on my list to complete. Grinding for armor sets is tedious to me so I’m skipping it…

    poke, do gaming w [Temtem] What are the things you wish you knew when you started the game ?

    Your starter will not be appreciably stronger than other tems. Most are balanced out to be somewhat usable I’m the endgame, whether it be by stats, moveset, or ability. I would argue that some starters are just better than other due to their type being hard to find until mid game and useful early on. Also, tems that don’t evolve will be way stronger in the early game, since they are somewhat balanced with tems that do evolve later on.

    Don’t be scared to experiment with different tems and see if some fit your playstyle better, because of that.

    There are also occasionally hidden or hard to find areas that have a very small chance to find a tem that’s only available there. These tem are usually pretty good, so you may want to spoil yourself if you want to catch them all.

    Also, much like Pokemon’s IVs, tem have stats that vary. However, these numbers are visible to you. If you know you want a tem on your team, it might be worth catching a few for better stats.

    Finally, unlike in pokemon where creatures evolve at a set level, tems evolve after gaining a certain number of levels after capture.

    Hamano,

    Great ! Thanks for all the infos !

    Are the hidden tems missable ? Or I can get them later ?

    poke,

    Sorry for the late response, but you can get them later!

    Hamano,

    No worries! Thank you!

    eggsim, do gaming w What side content should I do after finishing TOTK?
    @eggsim@beehaw.org avatar

    I’m not sure what interests you most (or if you’ve already done this), but one thing I’ve always enjoyed is trying to tackle all of the shrines. Each of them has their own puzzles that’s different enough to keep me entertained, and the access to skip travel points is great for whatever else you might be doing.

    You can also try to get korok seeds but those are sometimes even more annoying than the regular side quests

    Edit: Sorry for the double comment, my app was glitching

    RomanceDailies, do gaming w Why do video game devs tie game mechanics to framerate?
    @RomanceDailies@beehaw.org avatar

    Reminds me of LEGO Island where turning is tied to frame rate.

    Swyperider,
    @Swyperider@kbin.social avatar

    Yeah the video by MattKC on that topic is a great watch.

    tias, do gaming w Why do video game devs tie game mechanics to framerate?

    Let’s say you don’t tie game mechanics to frame rate. How often should you update the state of the game? 50 times / second? 100 times / second? You need to pick a fixed rate if you want to keep the physics engine consistent. If you make the rate too high the game will not run on low-end machines, so you need to find the right balance.

    But let’s say you make it 100 times / second. Now between those updates, nothing changes. You can render at 500 FPS, but you’ll be rendering the same thing five times before anything changes, so the extra frames are useless. There are ways around this. You could perform interpolation of object positions between the previous state and the new state (but this introduces input lag). You can keep things that don’t affect gameplay (e.g. eye-candy animations) running at the full FPS. But none of these things are trivially obvious. So it becomes a question of ambition, competence, and the will to put time (i.e. investor’s money) into it. Hence many projects simply prioritize other things.

    nekusoul, do gaming w Why do video game devs tie game mechanics to framerate?
    @nekusoul@lemmy.nekusoul.de avatar

    A big problem with an unlocked framerate is the physics system, which you can generally solve in two ways:

    1. You tie the physics to the framerate. Problem is that this introduces all sorts of weird behavior, caused by rounding errors and frequency of collision checks. For example, objects could start glitching through thin walls if their framerate is low because collisions are checked less often.
    2. You run the physics at a fixed internal interval. This solves a lot of problem with the first approach, but also means that you have to put in effort to mask the fixed framerate through interpolation/extrapolation if you still want to keep the actual framerate unlocked.

    So Wolfenstein New Order probably went with the first approach, made sure their physics system stays stable within a certain FPS range (30-60), and then locked the FPS beyond that.

    fraenki, do gaming w Why do video game devs tie game mechanics to framerate?
    @fraenki@feddit.de avatar

    Because it’s easier to programm a single thread that executes a sequence of commands like [ update-gamelogic, update-graphics, etc. ] instead of at least 2 threads (for gamelogic and graphics) that you have to synchronize somehow. Synchronization can be pretty difficult!

    verdare,

    Tying game logic to the framerate doesn’t really have anything to do with single- vs multi-threading. You can properly calculate the time since the last update in a single-threaded engine.

    fraenki,
    @fraenki@feddit.de avatar

    It’s not about that.

    If the game loop doesn’t run at the same speed as the render loop you’ll get ‘tearing’ - some game objects are at the latest state, some are not. That can cause some funky bugs.

    verdare,

    From my understanding, tearing can occur even if the game logic and render command submission happen on a single thread, since it’s a consequence of the OS compositor sending buffers to the monitor in the middle of rendering.

    dax,

    correct, but now you’ve just identified two separate types of tearing, both happening at different times. put them together and the perceived frequency will be significantly worse than it was prior.

    being able to zero one of those out and only worry about the other means you can hopefully optimize a better solution - as much as one can when you can’t realistically atomically update the entire display from top to bottom.

  • Wszystkie
  • Subskrybowane
  • Moderowane
  • Ulubione
  • krakow
  • test1
  • giereczkowo
  • rowery
  • Spoleczenstwo
  • Psychologia
  • Blogi
  • muzyka
  • slask
  • nauka
  • sport
  • lieratura
  • antywykop
  • fediversum
  • motoryzacja
  • FromSilesiaToPolesia
  • Technologia
  • Cyfryzacja
  • tech
  • Pozytywnie
  • zebynieucieklo
  • niusy
  • esport
  • kino
  • LGBTQIAP
  • opowiadania
  • turystyka
  • MiddleEast
  • Wszystkie magazyny