Payday 3 developer drops Denuvo from the game before it's even out angielski

It's common practice for PC games today to launch with Denuvo, a form of DRM designed to stop the spread of pirated copies of games, and it's also common practice for developers to remove Denuvo several months after launch as interest (and the risk of piracy) dwindles. Less common is a developer publicly announcing it's removing Denuvo from a game before it's even out, but that's the surprise Starbreeze pulled this Friday.

"Hello heisters, we want to inform you that Denuvo is no longer in Payday 3," the developer wrote in a post on Steam on Friday. That's pretty much the whole message—short and to the point, and seemingly a win on the good will front, with the Steam post racking up 524 thumbs up on Steam so far and another 10,000 or so on Twitter.

Payday 3 is less than a week away from its September 21 release, and Starbreeze is clearly looking to roll into the launch with an excited community behind it. Two months ago a thread on the r/paydaytheheist subreddit called out the inclusion of Denuvo and the responses were characteristically negative. This afternoon, one of the game's developers responded to that thread to highlight that Denuvo has been removed.

Denuvo has long had a reputation for hindering performance in games and bloating their executables, though the company behind it, Irdeto, insists that isn't the case. This summer it announced a plan to provide media outlets with two versions of games, one with Denuvo included and one without, to prove it has no impact on performance.

kugmo,
@kugmo@sh.itjust.works avatar

a plan to provide media outlets with two versions of games, one with Denuvo included and one without

If end users cannot test it’s useless.

Heavybell,
@Heavybell@lemmy.world avatar

I used to play PD2 with international friends, but latency being what it was I could only really play loud missions. Here’s hoping modern netcode somehow solves the issue of being spotted by guards that are behind a wall from my perspective.

quams69,

Based Starbreeze

umulu,
@umulu@lemmy.world avatar

Alright!

As soon as I saw they would be using denuvo I said to myself “nope! Fuck this game”

Hope they keep their promises

DoucheBagMcSwag,

Good. Having Denuvo in an always online game was fucking stupid

I still won’t play it because it’s another always online live service

mindbleach,

I admire the concept behind Denuvo.

Programs bounce around between a ton of different code segments, and it doesn’t really matter how they’re arranged within the binary. Some code even winds up repeated, when repetition is more efficient than jumping back and forth or checking a short loop. It doesn’t matter where the instructions are, so long as they do the right thing.

This machine code still tends to be clean, tight, and friendly toward reverse-engineering… relatively speaking. Anything more complex than addition is an inscrutable mess to people who aren’t warped by years of computer science, but it’s just a puzzle with a known answer, and there’s decades of tools for picking things apart and putting them back together. Scene groups don’t even need to unravel the whole program. They’re only looking for tricky details that will detect pirates and frustrate hackers. Eventually, they will find and defeat those checks.

So Denuvo does everything a hundred times over. Or a dozen. Or a thousand. Random chunks of code are decompiled, recompiled, transpiled, left incomplete, faked entirely, whatever. The whole thing is turned into a hot mess by a program that knows what each piece is supposed to be doing, and generally makes sure that’s what happens. The CPU takes a squiggly scribbled path hither and yon but does all the right things in the right order. And sprinked throughout this eight-ton haystack are so many more needles, any of which might do slightly different things. The “attack surface” against pirates becomes enormous. They’ll still get through, eventually, but a crack delayed is a crack denied.

Unfortunately for us this also fucks up why computers are fast now.

Back in the single-digit-megahertz era, this would’ve made no difference to anything, besides requiring more RAM for this bloated executables. 8- and 16-bit processors just go where they’re told and encounter each instruction by complete surprise. Intel won the 32-bit era by cranking up clock speeds, which quickly outpaced RAM response times, leading to hideously clever cache-memory use, inside the CPU itself. Cache layers nowadays are a major part of CPU cost and an even larger part of CPU performance. Data that’s read early and kept nearby can make an instruction take one cycle instead of one thousand.

Sending the program-counter on a wild goose chase across hundreds of megabytes guarantees you’re gonna hit those thousand-cycle instructions. The next instruction being X=N+1 might take literally no time, if it happens near a non-math instruction, and the pipeline has room for it. But if you have to jump to that instruction and back, it’ll take ages. Maybe an entire microsecond! And if it never comes back - if jumps to another copy of the whole function, and from there to parts unknown - those microseconds can become milliseconds. A few dozen of those in the wrong place and your water-cooled demigod of a PC will stutter like Porky Pig. That’s why Denuvo in practice just plain suuucks. It is a cache defeat algorithm. At its pleasure, and without remedy, it will give paying customers a glimpse of the timeline where Motorola 68000s conquered the world. Hit a branch and watch those eight cores starve.

sugar_in_your_tea,

Unfortunately, increasing cache seems to be the direction things are going, what with AMD’s 3D cache initiative and Apple moving RAM closer to the CPU.

So Denuvo could actually get away with it by just pushing the problem onto platforms. Ideally, this would discourage this type of DRM, but it’ll probably just encourage more PC upgrades.

Tranus,

I wouldn’t be surprised if we end up with ram-less systems soon. A lot of programs don’t need much more memory than the cache sizes already available. Things like electron bloat memory use through the roof, but even then it’s likely just a gigabyte or two. Cpus will have that much cache eventually. The few applications that really need tons of memory could be offloaded to a really fast SSD, which are already becoming the standard. I imagine we’ll see it in phones or tablets first, where multitasking isn’t as much of a thing and physical space is at a premium.

sugar_in_your_tea, (edited )

That’s just not true, here are a few off the top of my head:

  • video games
  • docker containers
  • web browsers
  • productivity software

RAM is actually the one resource I run out of in my day to day work as a software developer, and I get close on my gaming PC. I have a really fast SSD in my work computer (MacBook Pro) and my Linux gaming PC (some fast NVME drive), and both grind to a halt when I start swapping (Linux seems to handle it better imo). So no, I don’t think SSDs are enough by any stretch of the imagination.

If anything, our need for high performance RAM is higher today than ever! My SIL just started a graphics program (graphic design or UI/UX or something), so I advised her to prioritize a high amount of RAM over a high number of CPU/GPU cores because that’s how important RAM is to the user experience when deadlines approach.

Large CPU caches are great, but I don’t think you can really compensate for low system memory by having large caches and a fast SSD. What is obvious, though, is that memory latency and bandwidth is an issue, so I could see more Apple-style soldered NAND next to the CPU in the coming board revisions, which isn’t great for DIY systems. NAND modules are just so much cheaper to manufacturer than CPU cache, and they’re also sensitive to heat, so I don’t think embedding them on the CPU die is a great long term solution. I would prefer to see GPU-style memory modules either around or behind the CPU, soldered into the board, before we see on-die caches with multiple GB capacity.

Tranus,

Well you’re right that it’s not practical now. By “soon” I was thinking of like 10+ years from now. And as I said, it would likely start in systems that aren’t used for those applications anyway (aside from web browsers, which use way more ram than necessary anyway). By the time it takes over the applications you listed, we’ll have caches as big as our current ram anyway. And I’m using a loose definition of cache, I really just mean on-package memory of some kind. And we probably will see that GPU style memory before it’s fully integrated.

sugar_in_your_tea,

It’s already sort of a thing in embedded processors, such as ARM SOCs where RAM is glued to the top of the CPU package (I think the OG Raspberry Pi did that). But current iterations run the CPU way too hot for that to work, so the RAM is separate.

I could maybe see it be a thing in kiosks and other limited purpose devices (smart devices, smart watches, etc), but not for PCs, servers, or even smart phones, where we expect a lot higher memory load/multitasking.

fibojoly,

That’s a super interesting take on the whole issue. Good food for thought, thanks!

Yewb,

Dude that pre release beta was terrible almost everything was inferior to payday2 there is zero chance if me buying this game.

RedditWanderer,

Damn that’s sad to hear.

All they had to do was remake payday 2 with a few improvements/new puzzles/ maps and they would have made bank.

Payday 2 sold 40 million copies full AAA price too (like 79$ back then or wtv). They should have had the money to make a good game.

Fraylor,

Well after paying executive salaries and bonuses they unfortunately couldn’t have predicted the game would be on a bootstrap budget.

Kaldo,
@Kaldo@kbin.social avatar

Tbh I'm not really a fan of this stance either. If I'm buying a sequel I expect meaningful improvements, otherwise you're just ripping me off for something that could have been a dlc or expansion to the first game.

themoonisacheese,
@themoonisacheese@sh.itjust.works avatar

Tbh, a large part of payday2’s problems stem from being built on a racing game engine. Redoing pd2 on unreal straight would be of course a lot of work, but the end result would be a better product that I would pay for. Payday3 on the other hand doesn’t look like something that I would enjoy based on the fact unlike pd2.

GreenMario,

I played the beta.

It’s prettier Payday 2 with some quality of life tweaks. Plus it’s cross platform multiplayer which means I can PC with my Xbox friends.

That other guy is just salty. Whatever, it’s a brand new game for $40, not $70. I’d say give gamepass a shot if ya wanna rent it for a month.

PP_BOY_,
@PP_BOY_@lemmy.world avatar

Didn’t play it but I had to drop PD2 with about 200 hours on it after all the microtransactions got too much to deal with. Coupled with the fact that hosts could leave games in the middle of a heist with no punishment and risking your account being banned for accidentally getting on a crew with a hacker, the game lost a lot of its appeal.

themoonisacheese,
@themoonisacheese@sh.itjust.works avatar

It is basically impossible to be banned at all from playing payday 2. The worst you can do is equip invalid stuff, which marks you as a cheater and most people kick marked cheaters.

PP_BOY_,
@PP_BOY_@lemmy.world avatar

Idk my account was banned for about a month within the first year of the game coming out because a hacker started spawning infinite money bags on the Harvest bank. It took about a month of emails with support to get my account unbanned. It’s possible that they’ve since slacked off on enforcement, but I haven’t played the game in easily 5 years at this point.

CancerMancer,

Payday 2 did two things that drove me away: fundamental changes to the gameplay long after release that did not improve it (heavyhanded stealth nerfs), and an absolute mountain of DLC, complete with power creep.

I will be waiting quite a while before touching Payday 3 because I want to see how they will monetize it. Remember, it’s up against the likes of Deep Rock Galactic which is not at all abusively monetized. We do not need to suffer that shit again.

ElmarsonTheThird,
@ElmarsonTheThird@feddit.de avatar

Good it’s on gamepass after release so you can test it out until it eventually leaves.

gk99,

I mean, to be blunt, the game was never going to beat PAYDAY 2. PD2 is years of updates and content additions to make it fun despite the shitty engine, PAYDAY 3 is a brand new game with a lot of potential but all of it unrealized.

Metal_Zealot,
@Metal_Zealot@lemmy.ml avatar

So, do people actually play Pay Day? All I know is that it’s a game. Haven’t seen trailers, haven’t seen anyone play it on Twitch, it’s like a “fake” game that’s a joke that’s been going on for a really long time

xchino,

I mean the last one was released in 2013, it’s not exactly super relevant but if you’re that unaware of it I assume you were playing habbo hotel or whatever little kids played 10 years ago.

RedditWanderer, (edited )

Holy shitballs. It feels like just yesterday we were firing up payday 2 on release day with a bunch of friends and risking having a seizure at any moment on the “start heist” page.

I figured yeah payday 2 was like 5 years ago, time for a new one. 10 fucking years… i need a drink!

TheaoneAndOnly27,

Oh man, I feel old now. It was so fun when it came out. I remember the first time I solo stealthwd the nightclub. I kinda got burnt out when it went more absurd. Like after John wick.

Metal_Zealot, (edited )
@Metal_Zealot@lemmy.ml avatar

I’m aware of it like I’m aware of NFL games. They’re just kinda there and offer nothing new

all-knight-party, (edited )
@all-knight-party@kbin.cafe avatar

Some people, like me, are probably just waiting to see what happens. Payday 2 was awesome, but after release it got microtransactioned and piecemeal DLC'd to high fucking heaven. I don't care if the beta is good, I want to see what it'll become before I get invested.

Metal_Zealot, (edited )
@Metal_Zealot@lemmy.ml avatar

“Beta” it’s just “Early Access” with less free playtesters

drekly,

Man I was playing habbo hotel 20+ years ago

GreenMario,

Look at steam charts. Payday 2 is always in the first page. It’s very popular.

TheBlue22, (edited )

…are you an A.I.? Your comment is so incomprehensible that I fr think it was A.I. generated

Metal_Zealot,
@Metal_Zealot@lemmy.ml avatar

If you can’t parse anything from that, when multiple others have proven they can, then I’m not the one with issues here

Commiunism,

Yeah it’s one of those fake games they put in the movies so the movie company doesn’t have to pay licensing fees

Metal_Zealot,
@Metal_Zealot@lemmy.ml avatar

They could have just called it “Game” and I wouldn’t have been any the wiser

GreenMario,

Appreciated but strange. Did they look at the sub cost and went nah or something else? I mean could have just wanted it for the beta but idk seems overkill (heh heh).

Selmafudd,

I don’t understand why anybody would pay for it while it can be cracked… sure its likely only one person in the world can crack it atm but if she wants to crack it she can and then it’s gonna be uploaded and repacked by multiple people.

ThunderingJerboa, (edited )
@ThunderingJerboa@kbin.social avatar

But its multiplayer only (which has its own problems). So a crack would be pointless. Its always pinging home, so it just wouldn't work.

Selmafudd,

I’ve never played any of the paydays so yeah I’m not sure, some multiplayer can work with self hosted servers etc.

But yeah if it’s only official servers even more reseaon not to pay for the service

AFLYINTOASTER,

Hell yeah we love to see it

  • Wszystkie
  • Subskrybowane
  • Moderowane
  • Ulubione
  • giereczkowo
  • Spoleczenstwo
  • niusy
  • Pozytywnie
  • Blogi
  • sport
  • lieratura
  • esport
  • Cyfryzacja
  • rowery
  • kino
  • muzyka
  • LGBTQIAP
  • opowiadania
  • slask
  • Psychologia
  • motoryzacja
  • turystyka
  • MiddleEast
  • krakow
  • fediversum
  • zebynieucieklo
  • test1
  • Archiwum
  • FromSilesiaToPolesia
  • NomadOffgrid
  • games@sh.itjust.works
  • m0biTech
  • goranko
  • Wszystkie magazyny