├── .gitignore ├── LICENSE ├── README.md ├── enums ├── Commands.js ├── NetMessages.js ├── PacketEntities.js ├── SPROP.js ├── Teams.js ├── UserMessages.js ├── WeaponTypes.js └── kCW.js ├── index.js ├── package.json ├── protos ├── Common.js ├── GCMessages.js ├── NetMessages.js ├── UserMessages.js └── index.js └── src ├── BitStream.js ├── Entities ├── DecoyGrenade.js ├── Entity.js ├── Flashbang.js ├── Grenade.js ├── HEGrenade.js ├── MolotovGrenade.js ├── Player.js ├── SmokeGrenade.js ├── Team.js └── Weapon.js ├── MathHelpers.js ├── Protobuf.js ├── Reader.js └── Vector3.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SzymonLisowiec/node-CSGODemoReader/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SzymonLisowiec/node-CSGODemoReader/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SzymonLisowiec/node-CSGODemoReader/HEAD/README.md -------------------------------------------------------------------------------- /enums/Commands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SzymonLisowiec/node-CSGODemoReader/HEAD/enums/Commands.js -------------------------------------------------------------------------------- /enums/NetMessages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SzymonLisowiec/node-CSGODemoReader/HEAD/enums/NetMessages.js -------------------------------------------------------------------------------- /enums/PacketEntities.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SzymonLisowiec/node-CSGODemoReader/HEAD/enums/PacketEntities.js -------------------------------------------------------------------------------- /enums/SPROP.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SzymonLisowiec/node-CSGODemoReader/HEAD/enums/SPROP.js -------------------------------------------------------------------------------- /enums/Teams.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SzymonLisowiec/node-CSGODemoReader/HEAD/enums/Teams.js -------------------------------------------------------------------------------- /enums/UserMessages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SzymonLisowiec/node-CSGODemoReader/HEAD/enums/UserMessages.js -------------------------------------------------------------------------------- /enums/WeaponTypes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SzymonLisowiec/node-CSGODemoReader/HEAD/enums/WeaponTypes.js -------------------------------------------------------------------------------- /enums/kCW.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SzymonLisowiec/node-CSGODemoReader/HEAD/enums/kCW.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SzymonLisowiec/node-CSGODemoReader/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SzymonLisowiec/node-CSGODemoReader/HEAD/package.json -------------------------------------------------------------------------------- /protos/Common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SzymonLisowiec/node-CSGODemoReader/HEAD/protos/Common.js -------------------------------------------------------------------------------- /protos/GCMessages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SzymonLisowiec/node-CSGODemoReader/HEAD/protos/GCMessages.js -------------------------------------------------------------------------------- /protos/NetMessages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SzymonLisowiec/node-CSGODemoReader/HEAD/protos/NetMessages.js -------------------------------------------------------------------------------- /protos/UserMessages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SzymonLisowiec/node-CSGODemoReader/HEAD/protos/UserMessages.js -------------------------------------------------------------------------------- /protos/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SzymonLisowiec/node-CSGODemoReader/HEAD/protos/index.js -------------------------------------------------------------------------------- /src/BitStream.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SzymonLisowiec/node-CSGODemoReader/HEAD/src/BitStream.js -------------------------------------------------------------------------------- /src/Entities/DecoyGrenade.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SzymonLisowiec/node-CSGODemoReader/HEAD/src/Entities/DecoyGrenade.js -------------------------------------------------------------------------------- /src/Entities/Entity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SzymonLisowiec/node-CSGODemoReader/HEAD/src/Entities/Entity.js -------------------------------------------------------------------------------- /src/Entities/Flashbang.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SzymonLisowiec/node-CSGODemoReader/HEAD/src/Entities/Flashbang.js -------------------------------------------------------------------------------- /src/Entities/Grenade.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SzymonLisowiec/node-CSGODemoReader/HEAD/src/Entities/Grenade.js -------------------------------------------------------------------------------- /src/Entities/HEGrenade.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SzymonLisowiec/node-CSGODemoReader/HEAD/src/Entities/HEGrenade.js -------------------------------------------------------------------------------- /src/Entities/MolotovGrenade.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SzymonLisowiec/node-CSGODemoReader/HEAD/src/Entities/MolotovGrenade.js -------------------------------------------------------------------------------- /src/Entities/Player.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SzymonLisowiec/node-CSGODemoReader/HEAD/src/Entities/Player.js -------------------------------------------------------------------------------- /src/Entities/SmokeGrenade.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SzymonLisowiec/node-CSGODemoReader/HEAD/src/Entities/SmokeGrenade.js -------------------------------------------------------------------------------- /src/Entities/Team.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SzymonLisowiec/node-CSGODemoReader/HEAD/src/Entities/Team.js -------------------------------------------------------------------------------- /src/Entities/Weapon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SzymonLisowiec/node-CSGODemoReader/HEAD/src/Entities/Weapon.js -------------------------------------------------------------------------------- /src/MathHelpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SzymonLisowiec/node-CSGODemoReader/HEAD/src/MathHelpers.js -------------------------------------------------------------------------------- /src/Protobuf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SzymonLisowiec/node-CSGODemoReader/HEAD/src/Protobuf.js -------------------------------------------------------------------------------- /src/Reader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SzymonLisowiec/node-CSGODemoReader/HEAD/src/Reader.js -------------------------------------------------------------------------------- /src/Vector3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SzymonLisowiec/node-CSGODemoReader/HEAD/src/Vector3.js --------------------------------------------------------------------------------