Spray and Pray (Weapon Trait): Difference between revisions

From AoP Wiki
Created page with "{{Weapon Trait |description = The amount of bullets you hit in a burst depends heavily on distance and your Luck. }}"
 
No edit summary
 
Line 1: Line 1:
{{Weapon Trait
{{Weapon Trait
|description = The amount of bullets you hit in a burst depends heavily on distance and your [[Luck]].
|description = The amount of bullets you hit in a burst depends heavily on distance and your [[Luck]].
}}
|notes=Simplified formula:
 
hitPercent = (pow((maxDist - dist + 1) / maxDist)) * 100 + random(-10, 10)
 
Where random is calculated from your luck.
 
 
As can be seen from this formula, luck has an effect of +-10%, but becomes noticeable only with increasing distance.
There is little point in trying to increase luck when using a weapon with this trait. It is better to close the distance to get more bullet hits.}}

Latest revision as of 09:56, 29 April 2025

Spray and Pray (Weapon Trait)

Information

Spray and Pray (Weapon Trait) is a possible Weapon Trait a weapon can have.

Weapon Trait Description

The amount of bullets you hit in a burst depends heavily on distance and your Luck.

Important notes

Simplified formula:

hitPercent = (pow((maxDist - dist + 1) / maxDist)) * 100 + random(-10, 10)

Where random is calculated from your luck.


As can be seen from this formula, luck has an effect of +-10%, but becomes noticeable only with increasing distance. There is little point in trying to increase luck when using a weapon with this trait. It is better to close the distance to get more bullet hits.