Project

bf3

0.0
No commit activity in last 3 years
No release in over 3 years
Stats for Battlefield 3 from bf3stats.copm
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
 Dependencies

Runtime

 Project Readme

Simple Battlefield 3 Stats

powered by bf3stats.com

Build Status

Example:

require 'bf3'

player = Bf3::Player.new('Raengr', '360')
stats = player.callUp() # get global stats

kdratio = stats['global']['kills'].to_f / stats['global']['deaths'].to_f
# OR, conveniently
kdratio = player.kdr()

# to get ALL THE STATS!
all_stats = player.callUp('all')