So where is items_game.txt now?

T

The Asylum

Now that the old GCF files are null and void, where do we go to find the entity names of new weapons?
 

Geit

💜 I probably broke it 💜
aa
May 28, 2009
598
1,161
You can grab the absolute latest copy here: http://magic.geit.co.uk/items_game.php - courtesy of the Steam WebAPI


Code:
<?php
$key = '<removed>'; // from http://steamcommunity.com/dev/apikey
$file = file_get_contents("http://api.steampowered.com/IEconItems_440/GetSchemaURL/v1?key=$key");
$json = json_decode($file);
header('Content-Type: text/plain');
echo file_get_contents($json->result->items_game_url);
 
Last edited: