Receiver 2 - Data Mining Tips and Tricks

Receiver 2 - Data Mining Tips and Tricks

Receiver 2 - Data Mining Tips and Tricks image 0

A miscellaneous collection of tips/findings from looking through the game's code, things beyond the general tips covered by other guides.

Guide To Data Mining

Never Lose Rounds!

Hold the pick up button (G by default) while racking a semi-auto's slide or extracting rounds on a revolver to instantly return unspent rounds to your inventory. No more hunting rounds on the floor or losing them off a catwalk!

Malfunctions

Revolvers cannot malfunction. Semi-autos roll a dice every time there is a chance for a particular type of malfunction. Certain guns have different probabilities. There's a lot of misconception about failure rates probably due to observer bias. Here I dig into the game's code to show you the real chances of various malfunctions.


Receiver 2 - Data Mining Tips and Tricks image 7Stovepipe
  • Beretta: 0.5%
  • All others: 2.0%

This is rolled every time a round is fired. The Beretta wins here but 2% odds for other guns isn't too bad considering how easy it is to detect and clear this type of malfunction.


Receiver 2 - Data Mining Tips and Tricks image 11Out Of Battery
  • Hi Point: 4.0%
  • All others: 0.2%

This is rolled every time the slide is opened fully (manually or upon firing). A press check doesn't trigger this. The Hi Point has a significantly higher chance (1 in 25) to go out of battery, so make sure the slide is all the way forward before taking aim.


Receiver 2 - Data Mining Tips and Tricks image 15Mag Seated Wrong
Receiver 2 - Data Mining Tips and Tricks image 17
  • Beretta: 10.0%
  • All others: 5.0%

This is rolled when you insert a mag. The malfunction does nothing on its own, but it will increase the probability of a failure to feed (see below). Apparently the Beretta has ♥♥♥ mags.

You can prevent this malfunction by tapping the insert mag key again after inserting a mag to smack it and ensure it is seated properly.


Receiver 2 - Data Mining Tips and Tricks image 21

Make a habit of double-tapping the mag insert key and you should be pretty safe from this kind of malfunction.

Failure To Feed
  • All semi-autos: 4.0%
  • Mag seated wrong: 90.0%

Receiver 2 - Data Mining Tips and Tricks image 25

This is rolled every time the slide is opened fully (manually or upon firing). If the mag is seated wrong this is almost guaranteed to happen.

Double Feed
Receiver 2 - Data Mining Tips and Tricks image 28
  • All semi-autos: 0.5%

This is rolled every time you fire.


Receiver 2 - Data Mining Tips and Tricks image 31

Negligent Discharge (a.k.a Glock Leg)


Receiver 2 - Data Mining Tips and Tricks image 33

Receiver 2 introduces a gun safety mechanic where holstering/unholstering too fast can cause a negligent discharge. The gun will also fire any time it's equipped, ready to fire, and you click the button. This includes running, climbing, or falling.

Depending on certain conditions, an ND has a chance to hit you. You can actually survive one ND that hits (even with the Deagle... ouch). Just don't repeat it, because the second time will kill you.


Receiver 2 - Data Mining Tips and Tricks image 36Holster Discharges

The game tries to accidentally pull the trigger if you hold the holster button less than 0.4 seconds. If the gun is ready to fire, it will do so. If you held the button for less than 0.2 seconds, you will hit yourself.

Logic controlling when to accidentally pull trigger

Logic controlling when a holster ND will hit you. (The variable "odds" is always 1, meaning the random probability check always passes)

Running, Climbing, And Falling

If you aren't aiming and are in the middle of doing these things when you ND, it will also hit you. There is a time delay in starting/stopping these actions though, so you might get lucky if you just started running, for example.

half_aim_visible of less than 0.5 and not aiming will hit you. This code interpolates over 1/3 of a second when changing state between running, etc.

Killdrone Aim

Killdrones remember what direction you were moving the last time they saw you. Flying drones will use this to try and find you if you break contact, and turrets will try to lead you for a bit even if you run behind cover/concealment.

Flashlights

The flashlight will drain batteries when turned on, getting dimmer and eventually going out after 1 to 5 hours. If you find another flashlight, pick it up and check how bright it is!

Source: https://gameplay.tips/guides/7491-receiver-2.html					

More Receiver 2 guilds