Skip to content
radj307 edited this page Sep 5, 2021 · 14 revisions

Introduction

So you want to customize your archery physics, but don't want the hassle of patching every single projectile record in the entire game + all mods? Well, lucky for you Another Archery Patcher allows you to customize ( nearly ) every setting it uses!

How to Access & Change Settings

Changing the settings is easy, especially if you use the Git Repo version, as it will automatically create a settings menu accessible through the Synthesis UI.

Settings documentation can be found on this page, by clicking the "Settings Documentation" page on the sidebar

If you use the External version, or if you just hate GUIs, you can access the "settings.json" file located at:

<Path to Synthesis Directory>/Data/Another-Archery-Patcher/settings.json

What affects the trajectory of a projectile?

Projectile physics in Skyrim are controlled by 3 main factors:

  1. The draw speed (weight) of the bow used to fire the projectile.

    • The heavier the bow, the flatter the trajectory of the arrow.
  2. The starting trajectory of the projectile, controlled by the following settings found in Skyrim.ini or SkyrimCustom.ini:

[Combat]
f1PArrowTiltUpAngle=0.2
f1PboltTiltUpAngle=0.2
f3PArrowTiltUpAngle=0.7
  1. The Projectile. Somewhat obviously, a projectiles trajectory is mainly controlled by the projectile being fired; specifically, the Speed & Gravity values.

    • The higher a projectile's Speed value, the faster it flies towards its target.

      • A high speed value will flatten the arc of a projectile, as it spends less time in the air being affected by gravity.
    • The higher a projectile's Gravity value, the more gravity drags it downwards as it flies.

      • A high gravity value will curve the arc of a projectile downwards.
  • A projectile with a speed value of 7200 & gravity value of 0.7 will drop less than a projectile with a speed value of 3600 & gravity value of 0.35

    • The faster an arrow travels, the less time it spends being dragged down by gravity.
  • The interaction between these values is the primary focus of the Another Archery Tweak / Patcher mods.

Clone this wiki locally