1.1.0 • Published 6 years ago

aceonline-framebreak v1.1.0

Weekly downloads
6
License
MIT
Repository
github
Last release
6 years ago

AceOnline framebreak calculator

Standard weapons in AceOnline / AirRivals / SCO (Space Cowboy Online) only profit from very specific values of enchanted reattack (so called "breakpoints") due to time quantization.

Install

  • Using npm: npm i aceonline-framebreak

Usage

const aofb = require('aceonline-framebreak');
let breakpoints = aofb(0.45, 3, 60); // BigSmash in HeroSiege at 60 FPS

API

  • baseRea: Base reattack time of your weapon in seconds, e.g. 0.45
  • firingMode: How many times "per click" is fired, e.g. for a 3x1: 3
  • fps: The FPS to calculate for. You will mostly use 60
  • toReaPercent: Upper limit of added rea-% for the calculation, defaults to 81

Return format

An array of objects with the keys:

  • rea - at which reattack upgrade the break occurs
  • bps - how many bullets are fired per second at this point
[
  { "rea": 0, "bps": 6.666666666666667 },
  { "rea": 12, "bps": 7.5 },
  { "rea": 23, "bps": 8.571428571428571 },
  { "rea": 34, "bps": 10 },
  { "rea": 45, "bps": 12 },
  { "rea": 56, "bps": 15 },
  { "rea": 67, "bps": 20 },
  { "rea": 78, "bps": 30 }
]

Credits

License

The MIT License (MIT). Please see the License File for more information.