An open API service indexing awesome lists of open source software.

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

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);
```