How to Give Yourself Items, Skins, Agents & More

This guide was originally created by:
dricotec on GitHub
Reformatted and organized for Global Retake.
Quick thanks to Parker!
csgo gc stuff Pastebin: https://pastebin.com/icfAsgRw
YouTube Tutorial: https://www.youtube.com/watch?v=6TrCRjWmBoQ

Basic Item Template


// 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
    }
}
    

Quality IDs

IDQuality NameNotes
0Normal
1Genuine
2Vintage
3Unusual
4Unique
5Community
6Developer(Valve)
7Selfmade
8Customized
9Strange
10Completed
11Haunted
12Tournament (Souvenir)

Rarity IDs

IDRarity Name
0Default
1Consumer Grade
2Industrial Grade
3Mil-Spec Grade
4Restricted
5Classified
6Covert
7Contraband
99Unusual

Weapon IDs

Below are common weapon IDs used in "def_index".

IDWeaponIDWeapon
1weapon_deagle9weapon_awp
7weapon_ak4716weapon_m4a1
19weapon_p9024weapon_ump45
25weapon_xm101427weapon_mag7
29weapon_sawedoff30weapon_tec9
32weapon_hkp200035weapon_nova
36weapon_p25038weapon_scar20
39weapon_sg55640weapon_ssg08
42weapon_knife43weapon_flashbang
44weapon_hegrenade49weapon_c4
60weapon_m4a1_silencer61weapon_usp_silencer
63weapon_cz75a64weapon_revolver

Knives

IDKnife Type
500Bayonet
505Flip Knife
506Gut Knife
507Karambit
508M9 Bayonet
509Huntsman Knife
512Falchion Knife
515Butterfly Knife
516Shadow Daggers
523Widowmaker (Navaja)
525Skeleton Knife

Glove IDs

Glove TypeID
Bloodhound5027
Broken Fang4725
Driver Gloves5031
Hand Wraps5032
Hydra Gloves5035
Moto Gloves5033
Specialist Gloves5034
Sport Gloves5030

Example: Sport Gloves


// 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

Agent IDs

CT Agents — Master Agents

T Agents — Master Agents

Example: Giving Yourself an Agent


// 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"
}
    

Adding Skins (Weapons & Knives)

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
    }
}
    

StatTrak Guide

Credits to Baldywaldy09.


// Add StatTrak to a weapon
"80" "2"  // Kill count
"81" "0"  // Score type
    

Full Example: StatTrak Glock


"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!