How to Give Yourself Items, Skins, Agents, and More

Quick thanks to Parker!
csgo gc stuff Pastebin: https://pastebin.com/icfAsgRw
YouTube Tutorial: https://www.youtube.com/watch?v=6TrCRjWmBoQ
Quick Showcase the best UI Inventory Editor, App and Web.
https://github.com/dricotec/csgo_gc_inventory-editor/
https://github.com/dricotec/csgo_gc_inventory-editor-web/
Enjoy, Read below for a Manual way to edit your inventory.

📘 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. Use these 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: Giving Yourself 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
    }
}

You can look up glove or skin finish catalogs here:
https://csgoskins.gg

🧍 Agent IDs

CT Agents — Master Agents

CT Agents — Superior Agents

CT Agents — Exceptional Agents

CT Agents — Distinguished Agents

T Agents — Master Agents

T Agents — Superior Agents

T Agents — Exceptional Agents

T Agents — Distinguished 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"
    // Attributes are optional unless you want patches
}

🎨 Adding Skins (Weapons and Knives)

You can use CSGOSkins.gg to find any skin’s Finish Catalog ID.

Example:

// Example: Souvenir AWP Dragon Lore
"number"
{
    "inventory"        "number"
    "def_index"        "9"         // AWP
    "level"            "1"
    "quality"          "5"         // Quality ID
    "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 (by Baldywaldy09)

Date: 15/11/2025

How would you add StatTrak to a weapon?

Adding StatTrak™ to your gun is very simple!

For weapons:

For music kits:

Example Gun (StatTrak™ Glock‑19 Gamma Doppler Emerald with 2 kills)

"52"
{
    "inventory"     "3"
    "def_index"     "4"
    "level"         "1"
    "quality"       "9"
    "flags"         "0"
    "origin"        "8"
    "in_use"        "0"
    "rarity"        "1"
    "attributes"
    {
        "6"     "1119"  // AttributeTexturePrefab (Finish)
        "7"     "452"   // AttributeTextureSeed (Pattern)
        "8"     "0"     // AttributeTextureWear (Float)
        "80"    "2"     // AttributeKillEater (StatTrak™ Kill Count)
        "81"    "0"     // AttributeKillEaterScoreType (StatTrak™ Type)
    }
}

Made and organized for easy reading and editing, have fun!