PAYDAY 2

PAYDAY 2

View Stats:
GGamers Jul 17, 2023 @ 5:24am
Crime Spree Infamy farming
Hello, I need someone with a High Crime Spree so I can farm to 100 Infamy for the achievement, would anyone be so kind?
< >
Showing 1-13 of 13 comments
Blockhead Jul 17, 2023 @ 5:42am 
Crime Spree isn't that good for Infamy Farming - you have to claim rewards before you're allowing to go Infamous, and you can only gain a maximum of 100 extra levels via Catch-Up Bonus (and only if you're already level 100).
embe Jul 17, 2023 @ 12:20pm 
Originally posted by Blockhead:
Crime Spree isn't that good for Infamy Farming - you have to claim rewards before you're allowing to go Infamous, and you can only gain a maximum of 100 extra levels via Catch-Up Bonus (and only if you're already level 100).
Actually it can still be a good choice since you can fill the infamy pool after 6 heists which doesn't take too long with a team.
Blockhead Jul 17, 2023 @ 2:27pm 
Originally posted by embe:
Actually it can still be a good choice since you can fill the infamy pool after 6 heists which doesn't take too long with a team.

30 million XP from 6 heists in Crime Spree? Are you sure about that?

It used to take a Crime Spree Rank of at least 484 to go from 0-100 (which is just over 23 million XP). This was easily doable with Catch-Up Bonuses, but those now cap out at 100, so you'd have to earn the remaining 384 ranks manually.
embe Jul 18, 2023 @ 2:19am 
Originally posted by Blockhead:
Originally posted by embe:
Actually it can still be a good choice since you can fill the infamy pool after 6 heists which doesn't take too long with a team.

30 million XP from 6 heists in Crime Spree? Are you sure about that?

It used to take a Crime Spree Rank of at least 484 to go from 0-100 (which is just over 23 million XP). This was easily doable with Catch-Up Bonuses, but those now cap out at 100, so you'd have to earn the remaining 384 ranks manually.
You get just over 30 million XP from having Crime Spree rank of 550 and you can reach a higher amount in 6 heists because of the Catch-Up giving you 100 ranks. It's possible to do in 5 heists if the heists picked give 10 ranks or more but those are typically longer and more difficult so they should be avoided in Crime Spree.
Blockhead Jul 18, 2023 @ 3:10am 
Originally posted by embe:
You get just over 30 million XP from having Crime Spree rank of 550 and you can reach a higher amount in 6 heists because of the Catch-Up giving you 100 ranks. It's possible to do in 5 heists if the heists picked give 10 ranks or more but those are typically longer and more difficult so they should be avoided in Crime Spree.

My understanding was that the Catch-Up Bonus was limited to 100 ranks, meaning once you hit 100 extra ranks you stopped gaining them. What you're saying is that you can continuously farm 100 ranks from each Crime Spree Heist? That sounds wrong and I don't think that's what was intended by the update, but if this is how it works then fair enough.

Here's the update where they explain it:

https://www.paydaythegame.com/news/payday2/2022/06/payday-2-update-222-changelog/

Added a limitation to the Crime Spree catch-up mechanic so you can’t gain more than 100 bonus ranks from playing with a host of higher rank

This would imply that it's a global 100 bonus ranks, and not just a per-heist limit. I had assumed this also applied to switching hosts as well.
embe Jul 18, 2023 @ 3:58am 
Originally posted by Blockhead:
My understanding was that the Catch-Up Bonus was limited to 100 ranks, meaning once you hit 100 extra ranks you stopped gaining them. What you're saying is that you can continuously farm 100 ranks from each Crime Spree Heist? That sounds wrong and I don't think that's what was intended by the update, but if this is how it works then fair enough.

I haven't tried it but not getting any catch-up if your Crime Spree rank is 100 or higher doesn't make much sense.

Also said in the same update:
This limit only applies if the host is playing at 2,857 ranks higher than the clients

That makes it seem like someone with a Crime Spree rank of 2900 can first get someone to 100 and after that they are below the catch-up bonus limit allowing them to get nearly 100 ranks of catch-up from the next Crime Spree by the same host. Not allowing someone with a higher Crime Spree to do the same seems somewhat unfair.
Blockhead Jul 18, 2023 @ 4:22am 
Originally posted by embe:
I haven't tried it but not getting any catch-up if your Crime Spree rank is 100 or higher doesn't make much sense.

It's not about your Crime Spree Rank, it's about your Catch-Up Bonus - you could be at a Crime Spree of 1000 and you'd still earn a Catch-Up Bonus, but only an extra 100 Bonus ranks.


Originally posted by embe:
Also said in the same update:
This limit only applies if the host is playing at 2,857 ranks higher than the clients

That makes it seem like someone with a Crime Spree rank of 2900 can first get someone to 100 and after that they are below the catch-up bonus limit allowing them to get nearly 100 ranks of catch-up from the next Crime Spree by the same host. Not allowing someone with a higher Crime Spree to do the same seems somewhat unfair.

Catch-Up Bonus gives 3.5% of the host's rank, so 3.5% of 2857 would be pretty much 100 (99.995 to be exact) - which matches the limitation of 100 bonus ranks.

Given that Crime Spree Infamy farming doesn't seem to be the go to method these days for Infamy farming (most people either ECM rush Diamond Store or do a specialised 4-heist rotation) it leads me to think that it's not possible to go Infamous from just 6 heists.

I guess it would be good to get confirmation from Overkill/someone who looks at the code to say if the 100 bonus ranks are applied on a heist-by-heist basis (or even a host-by-host basis) or are global.
Last edited by Blockhead; Jul 18, 2023 @ 4:22am
Dom Jul 18, 2023 @ 4:57am 
Originally posted by Blockhead:
I guess it would be good to get confirmation from Overkill/someone who looks at the code to say if the 100 bonus ranks are applied on a heist-by-heist basis (or even a host-by-host basis) or are global.
The bonus is applied after completing a heist.
Requirements for catch up bonus in CS:
1. Play as a client
2. Your CS is lower than host's CS
3. You need to be Level 100

When you finish a heist and the requirements above are satisfied, the game computes a difference between host's CS and yours (host CS - your CS)
This diff is used to compute your catch-up bonus as follows:

math.min(100, math.floor(0.035 * diff))

As per formula above, your catch up bonus can be between 0 - 100.

Values here are from the Vanilla game (marked as bold text), but they can be modified to allow bigger bonus.

See CrimeSpreeManager:on_mission_completed()
Last edited by Dom; Jul 18, 2023 @ 5:12am
Blockhead Jul 18, 2023 @ 5:04am 
Originally posted by Dom:
*snip*

So you CAN get more than a single 100 Bonus ranks, by playing additional heists (assuming the CS rank difference is sufficient obviously)? I'm extremely surprised that Crime Spree hasn't remained the go-to Infamy method because of this - it's at least a contender for normal farming methods, surely?
Dom Jul 18, 2023 @ 5:11am 
Originally posted by Blockhead:
Originally posted by Dom:
*snip*

So you CAN get more than a single 100 Bonus ranks, by playing additional heists (assuming the CS rank difference is sufficient obviously)? I'm extremely surprised that Crime Spree hasn't remained the go-to Infamy method because of this - it's at least a contender for normal farming methods, surely?
You can if you tweak the values in CrimeSpreeTweakData

In Vanilla game, you will get max 100 levels if difference between you and the host is 2858 levels
Blockhead Jul 18, 2023 @ 5:16am 
Originally posted by Dom:
You can if you tweak the values in CrimeSpreeTweakData

In Vanilla game, you will get max 100 levels if difference between you and the host is 2858 levels

No no, what we're saying is that you can get 100 levels after EVERY heist in a Crime Spree. I was under the impression that you stopped earning bonus ranks after you accumulated 100. But what it sounds like is that you can continuously earn bonus ranks, just each increment can't be higher than 100 (in Vanilla).
Dom Jul 18, 2023 @ 5:28am 
Originally posted by Blockhead:
Originally posted by Dom:
You can if you tweak the values in CrimeSpreeTweakData

In Vanilla game, you will get max 100 levels if difference between you and the host is 2858 levels

No no, what we're saying is that you can get 100 levels after EVERY heist in a Crime Spree. I was under the impression that you stopped earning bonus ranks after you accumulated 100. But what it sounds like is that you can continuously earn bonus ranks, just each increment can't be higher than 100 (in Vanilla).
You continuously get bonus ranks as long your CS level is lower than host's, yep.

If the diff between your CS and host's CS is 28 levels or lower, you no longer get bonus ranks.
Last edited by Dom; Jul 18, 2023 @ 5:33am
Blockhead Jul 18, 2023 @ 5:45am 
Originally posted by Dom:
You continuously get bonus ranks as long your CS level is lower than host's, yep.

If the diff between your CS and host's CS is 28 levels or lower, you no longer get bonus ranks.

Thank you, and thank you to Embe, for educating me!

I feel like this goes against what Overkill was trying to accomplish by limiting Crime Spree; but it's interesting to know that this is still a viable method to Infamy farm.
< >
Showing 1-13 of 13 comments
Per page: 1530 50

Date Posted: Jul 17, 2023 @ 5:24am
Posts: 13