/BraindanceProtocol

A collection of LUA scripts to modify your Cyberpunk 2077 experience

Primary LanguageLuaGNU General Public License v3.0GPL-3.0

BraindanceProtocol

A collection of LUA scripts to modify your Cyberpunk 2077 experience

Available Tweaks

  • Prevent V from being knocked over by NPC vehicles
  • Disable AutoSaves
  • Increase AutoSaves increments
  • Decrease AutoSaves increments
  • Activate GodMode
  • Give Player Johnny's Items
  • Give Player lots of money
  • Set Player to Max Level, Streetcred, Perk level, and Attribute level
  • Give Player all Legendary recipies

Requirements

CyberEngineTweaks

Installation

Drop mods folder into bin\x64\plugins\cyber_engine_tweaks\

Usage

Inside of bin\x64\plugins\cyber_engine_tweaks\mods\autoexec.lua add the following:

s = [[
---------------------------------------------------------------------
Running mod autoexec scripts in order...
---------------------------------------------------------------------
]]

-- Load Order
local loadOrder = {
    "braindance"
}

-- Initialise Mods
for i, mod in ipairs(loadOrder) do
    dofile(string.format( "%s_autoexec.lua", mod ))
end

Configuration

Inside of bin\x64\plugins\cyber_engine_tweaks\mods\braindance_autoexec.lua configure the protocols you wish to run.