RainbowPonies-Perfect_Shot icon

Perfect Shot

100% hole-in-one auto-aim solver for Super Battle Golf.

Last updated 2 days ago
Total downloads 145
Total rating 0 
Categories Mods
Dependency string RainbowPonies-Perfect_Shot-1.0.2
Dependants 0 other packages depend on this package

This mod requires the following mods to function

BepInEx-BepInExPack-5.4.2305 icon
BepInEx-BepInExPack

BepInEx pack for Mono Unity games. Preconfigured and ready to use.

Preferred version: 5.4.2305

README

Perfect Shot

BepInEx plugin for Super Battle Golf. Auto-aim solver that lands 100% hole-in-ones on normal-range shots.

Install

Install via r2modman — it'll pull the BepInEx dependency automatically. Then launch the game and press J to toggle the plugin on.

Keys

  • J — toggle plugin on/off
  • R — auto-aim perfect shot (solver picks pitch, yaw, power — ball goes in)
  • Q — force 100% power in current manual aim
  • M — Metal Mario (KO / freeze immunity from items, swings, carts)

Dependencies

  • BepInEx 5 (BepInEx-BepInExPack-5.4.2305) — bundled with Harmony

How it works

Hybrid physics predictor that reuses the game's own math instead of trying to out-guess it:

  • Runs the game's native CalculateFirstGroundHitDistancesJob (Unity Burst, terrain-aware) via reflection to get exact drag/gravity/terrain predictions.
  • Layers wind and elevation corrections on top with a small hand-coded simulator that uses the game's own reflected WindFactor and CrossWindFactor — no empirical fits, no fudge factors.
  • Two-stage (pitch × yaw) search: 5-pitch coarse sweep, then ±7° refine at 0.2° yaw step so lateral accuracy beats the cup radius.
  • First-hit position targeted directly at the hole — no rollback, no rolling.