Cyberpunk 2077 on PC supports a full mod-based cheat console called Cyber Engine Tweaks. It gives you access to every game variable including money, attributes, items, and game state.
Console and standard PC versions do not support the mod tool. This guide covers PC only.
INSTALLING CYBER ENGINE TWEAKS
1. Download Cyber Engine Tweaks from Nexus Mods (search CET).
2. Extract the files into your Cyberpunk 2077 installation folder.
Default path: C:/Program Files (x86)/Steam/steamapps/common/Cyberpunk 2077/bin/x64/
3. Launch the game. Press the tilde key (~) or grave accent to open the CET console.
4. Type commands directly into the console window.
Always back up your save files before using any cheat console. Save files are at:
Documents/CD Projekt Red/Cyberpunk 2077/Saves/
MONEY CHEATS
Add 100,000 Eurodollars:
Game.AddToInventory("Items.money", 100000)
Add 1,000,000 Eurodollars:
Game.AddToInventory("Items.money", 1000000)
Run this command multiple times for larger amounts.
WEAPON AND ITEM SPAWNS
Spawn Iconic Weapons:
Game.AddToInventory("Items.Preset_Nue_Default", 1) (Nue pistol)
Game.AddToInventory("Items.Preset_Katana_Saburo", 1) (Satori katana)
Game.AddToInventory("Items.Preset_Revolver_Pimp", 1) (Crash revolver)
Game.AddToInventory("Items.Preset_Shotgun_Base", 1) (standard shotgun)
Spawn Crafting Materials:
Game.AddToInventory("Items.CraftingMaterial1", 50) (Common components)
Game.AddToInventory("Items.CraftingMaterial2", 50) (Uncommon components)
Game.AddToInventory("Items.CraftingMaterial3", 50) (Rare components)
Game.AddToInventory("Items.CraftingMaterial5", 50) (Legendary components)
ATTRIBUTE AND SKILL CHEATS
Set All Attributes to Maximum (20):
Game.GetStatsSystem():GetStatValue(Game.GetPlayerSystem():GetLocalPlayerControlledGameObject(), "Strength")
Use this simpler method instead. Open the CET console and run:
local ps = Game.GetPlayerSystem():GetLocalPlayerControlledGameObject():GetPlayerDevelopmentData()
ps:SetAttribute(gamedataStatType.Strength, 20)
ps:SetAttribute(gamedataStatType.Reflexes, 20)
ps:SetAttribute(gamedataStatType.TechnicalAbility, 20)
ps:SetAttribute(gamedataStatType.Intelligence, 20)
ps:SetAttribute(gamedataStatType.Cool, 20)
INVINCIBILITY AND GAMEPLAY CHEATS
God Mode (no damage):
Game.GetPlayer():SetInvincible(true)
Disable God Mode:
Game.GetPlayer():SetInvincible(false)
Infinite Stamina:
Game.GetPlayer():GetStaminaComponent():SetValue(100)
Teleport to Specific Coordinates:
Game.GetTeleportationFacility():Teleport(Game.GetPlayer(), Vector4.new(1700, -1200, 22, 1))
Replace the numbers with your target X, Y, Z coordinates from the Cyberpunk 2077 map tool at nfm.pw/CP77Map.
PHANTOM LIBERTY DLC CHEATS
All DLC items work with the same CET framework.
Spawn Dogtown weapons:
Game.AddToInventory("Items.Preset_Base_ManticoreRifle", 1)
Game.AddToInventory("Items.Preset_Tier5_Knife_Errata", 1)