https://github.com/yureitzk/tf2-data-extractor
Team Fortress 2 item scheme extractor
https://github.com/yureitzk/tf2-data-extractor
team-fortress-2 tf2 vdf-format
Last synced: 25 days ago
JSON representation
Team Fortress 2 item scheme extractor
- Host: GitHub
- URL: https://github.com/yureitzk/tf2-data-extractor
- Owner: yureitzk
- Created: 2025-12-11T16:37:25.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2025-12-20T07:37:03.000Z (6 months ago)
- Last Synced: 2025-12-31T20:52:37.882Z (5 months ago)
- Topics: team-fortress-2, tf2, vdf-format
- Language: JavaScript
- Homepage:
- Size: 305 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Team Fortress 2 Item Scheme Extractor
## Getting Started
### 1. Dependencies
Ensure you have Node.js and npm installed.
```sh
npm i
```
### 2. Data Source
You need a TF2 data file, `items.txt`, that's is located in `tf/scripts/items/items_game.txt`.
### 3. Running the parser
```sh
node index.js
```
If you want to edit an array of items to generate, simply edit `start` and `end` variables
```js
const start = 35;
const end = getMaxJsonKey(items.items_game.items);
```