Like many modern games, Cyberpunk 2077 does not directly allow cheating and activating invulnerability or other similar effects with a few simple manipulations. But as always, the modders have been digging through the game files, and thus discovered how to enable command lines in-game, at least on the PC version of CD Projekt Red's game. However, you must install a Cyber Engine Tweaks mod to use it, you can find the details in the article below if necessary to know which one to use, and how to install it. Instead, we'll focus on the long list of commands here.
Get money or items
Use Game.AddToInventory
- Game.AddToInventory("Items.money",XXXX): Gives the indicated amount of money, replace XXXX to modify it.
- Game.AddToInventory("Items.XXXX", 1): Gives the item indicated, replace XXXX with the Hash ID of the item concerned. You can find the list of all the items in the game on this document .
Summon vehicle
- Use "Game.GetVehicleSystem()"
- Then "EnableAllPlayerVehicles();"
-
And "SpawnPlayerVehicle(optional vehicleType: gamedataVehicleType);" to summon the desired vehicle. Here is the list of vehicles.
Vehicle.v_sport1_herrera_outlaw_player
Vehicle.v_sport1_quadra_turbo_player
Vehicle.v_sport1_quadra_turbo_r_player
Vehicle.v_sport1_rayfield_aerondight_player
Vehicle.v_sport1_rayfield_caliburn_player
Vehicle.v_sport2_mizutani_shion_player
Vehicle.v_sport2_mizutani_shion_nomad_player
vehicle.v_sport2_porsche_911turbo_player
Vehicle.v_sport2_quadra_type66_player
Vehicle.v_sport2_quadra_type66_avenger_player
Vehicle.v_sport2_quadra_type66_nomad_player
Vehicle.v_sport2_villefort_alvarado_player
Vehicle.v_standard25_mahir_supron_player
Vehicle.v_standard25_villefort_columbus_player
Vehicle.v_standard25_thorton_colby_pickup_player
Vehicle.v_standard2_archer_hella_player
Vehicle.v_standard2_archer_quartz_player
vehicle.v_standard2_chevalier_thrax_player
Vehicle.v_standard2_makigai_maimai_player
Vehicle.v_standard2_thorton_colby_player
Vehicle.v_standard2_thorton_galena_player
Vehicle.v_standard2_thorton_galena_nomad_player
Vehicle.v_standard2_villefort_cortes_player
Vehicle.v_standard2_villefort_cortes_delamain_player
vehicle.v_standard3_chevalier_emperor_player
Vehicle.v_standard3_thorton_mackinaw_player
Vehicle.v_sportbike1_yaiba_kusanagi_player
Vehicle.v_sportbike2_arch_player
Vehicle.v_sportbike3_brennan_apollo_player
Vehicle.v_sportbike3_brennan_apollo_nomad_player
Vehicle.v_sportbike2_arch_jackie_player
Vehicle.v_sportbike2_arch_jackie_tuned_player
Vehicle.v_sport2_villefort_alvarado_valentinos_player
Vehicle.v_standard2_thorton_galena_bobas_player
Vehicle.v_standard3_thorton_mackinaw_ncu_player
vehicle.v_sport2_quadra_type66_nomad_ncu_player
Vehicle.v_sportbike1_yaiba_kusanagi_tyger_player
Vehicle.v_sportbike2_arch_tyger_player
vehicle.v_sport2_mizutani_shion_nomad_02_player
Vehicle.v_sport1_rayfield_caliburn_02_player
Vehicle.v_standard25_thorton_colby_pickup_02_playerFind below our articles on the normal unlocking of vehicles, which can be easier.
Level Up
Use Game.SetLevel
- Game.SetLevel("Level", XX): Indicate the desired level by replacing "XX".
Modifying an Advantage level
Use Game.SetAtt
- Game.SetAtt("Strength", XX) -- Replace "XX" to change your Constitution.
Modify an Advantage or give yourself Advantage Points
Use Game.GiveDevPoints
- Game.GiveDevPoints("Attribute", X): Name of the advantage, then the number of points.
Game.GiveDevPoints("Primary", XX): Replace "XX" with the desired number of Perk points.
Reset Benefits
Use Game.AddToInventory
-
Game.AddToInventory("Items.PerkPointsResetter",1)
Gives you the Advantages reset item in inventory, all you have to do is use it.
Increase his life or the maximum weight
Use Game.AddToInventory
- Game.ModStatPlayer("CarryCapacity", "XXXXX"): Substitute "XXXXX" to indicate the desired carry weight.
- Game.ModStatPlayer("Health", "XXXXX"): Replace "XXXXX" to indicate the desired maximum health.
Activate Infinite Stamina
- Game.InfiniteStamina(true): Activates infinite stamina.
- Game.InfiniteStamina(false): Disables infinite stamina.
Teleport
- Game.TeleportPlayerToPosition (X,Y,Z): Replace X, Y and Z with the desired coordinates. Find a list of popular destinations on this document .
Activate Johnny's Secret Ending
- Game.SetDebugFact("sq032_johnny_friend", 1): Then reach the point in the story where he can offer you to go and fulfill the secret ending.
Bring Takemura back to life
- Game.SetDebugFact("q112_takemura_dead", 0): Changes a few lines of dialogue, and modifies Hanako Arasaka's ending a bit.