// Example item entry
"4"
{
"inventory" "3"
"def_index" "60" // Weapon ID, Pin ID, etc.
"level" "1"
"quality" "5" // Quality ID
"flags" "0"
"origin" "8"
"in_use" "0"
"rarity" "1" // Rarity ID
"attributes" // Used for skins (omit if it's a pin, sticker, etc.)
{
"6" "282.000000" // Finish Catalog
"7" "0.000000" // Pattern Template
"8" "0.100000" // Float Value
}
}
| ID | Quality Name | Notes |
|---|---|---|
| 0 | Normal | |
| 1 | Genuine | |
| 2 | Vintage | |
| 3 | Unusual | |
| 4 | Unique | |
| 5 | Community | |
| 6 | Developer | (Valve) |
| 7 | Selfmade | |
| 8 | Customized | |
| 9 | Strange | |
| 10 | Completed | |
| 11 | Haunted | |
| 12 | Tournament (Souvenir) |
| ID | Rarity Name |
|---|---|
| 0 | Default |
| 1 | Consumer Grade |
| 2 | Industrial Grade |
| 3 | Mil-Spec Grade |
| 4 | Restricted |
| 5 | Classified |
| 6 | Covert |
| 7 | Contraband |
| 99 | Unusual |
Below are common weapon IDs used in "def_index".
| ID | Weapon | ID | Weapon | |
|---|---|---|---|---|
| 1 | weapon_deagle | 9 | weapon_awp | |
| 7 | weapon_ak47 | 16 | weapon_m4a1 | |
| 19 | weapon_p90 | 24 | weapon_ump45 | |
| 25 | weapon_xm1014 | 27 | weapon_mag7 | |
| 29 | weapon_sawedoff | 30 | weapon_tec9 | |
| 32 | weapon_hkp2000 | 35 | weapon_nova | |
| 36 | weapon_p250 | 38 | weapon_scar20 | |
| 39 | weapon_sg556 | 40 | weapon_ssg08 | |
| 42 | weapon_knife | 43 | weapon_flashbang | |
| 44 | weapon_hegrenade | 49 | weapon_c4 | |
| 60 | weapon_m4a1_silencer | 61 | weapon_usp_silencer | |
| 63 | weapon_cz75a | 64 | weapon_revolver |
| ID | Knife Type |
|---|---|
| 500 | Bayonet |
| 505 | Flip Knife |
| 506 | Gut Knife |
| 507 | Karambit |
| 508 | M9 Bayonet |
| 509 | Huntsman Knife |
| 512 | Falchion Knife |
| 515 | Butterfly Knife |
| 516 | Shadow Daggers |
| 523 | Widowmaker (Navaja) |
| 525 | Skeleton Knife |
| Glove Type | ID |
|---|---|
| Bloodhound | 5027 |
| Broken Fang | 4725 |
| Driver Gloves | 5031 |
| Hand Wraps | 5032 |
| Hydra Gloves | 5035 |
| Moto Gloves | 5033 |
| Specialist Gloves | 5034 |
| Sport Gloves | 5030 |
// Example: Sport Gloves (Pandora’s Box)
"number"
{
"inventory" "number"
"def_index" "5030" // Sport Gloves
"level" "1"
"quality" "5"
"flags" "0"
"origin" "8"
"in_use" "0"
"rarity" "1"
"attributes"
{
"6" "282.000000" // Finish Catalog (Pandora’s Box)
"7" "69420.000000" // Pattern Template
"8" "0.000000666" // Float Value
}
}
Look up finish IDs here: https://csgoskins.gg
// Example: Number K (The Professionals)
"4"
{
"inventory" "3"
"def_index" "4732" // Number K
"level" "1"
"quality" "5"
"flags" "0"
"origin" "8"
"in_use" "0"
"rarity" "1"
}
Use CSGOSkins.gg to find finish catalog IDs.
// Example: Souvenir AWP Dragon Lore
"number"
{
"inventory" "number"
"def_index" "9" // AWP
"level" "1"
"quality" "5"
"flags" "0"
"origin" "8"
"in_use" "0"
"rarity" "12" // Souvenir
"attributes"
{
"6" "344.000000" // Finish Catalog (Dragon Lore)
"7" "0.000000" // Pattern Template
"8" "0.100000" // Float
}
}
Credits to Baldywaldy09.
// Add StatTrak to a weapon
"80" "2" // Kill count
"81" "0" // Score type
"52"
{
"inventory" "3"
"def_index" "4"
"level" "1"
"quality" "9"
"flags" "0"
"origin" "8"
"in_use" "0"
"rarity" "1"
"attributes"
{
"6" "1119"
"7" "452"
"8" "0"
"80" "2"
"81" "0"
}
}
Made and organized for easy reading and editing — have fun!