csstats-reader
v2.0.1
Published
Node.js package for parse AMX Mod X Stats File.
Downloads
3
Maintainers
Readme
csstats-reader
Node.js package for parse AMX Mod X Stats File.
Prerequisites
Installation
npm install csstats-reader
Example
const CSStats = require('csstats-reader');
const csstats = new CSStats({
path: 'C:/Users/giova/Desktop/Counter-Strike 1.6/cstrike/addons/amxmodx/data/csstats.dat',
});
(async () => {
const data = await csstats.players();
console.log(data);
})();