Users: troubleshooting requirements

How do I get my fucking mod working and what do dependencies have to do with it?

Summary

This page will give you an explanation of requirements (Theory: What is a requirement?). After that, you will find a guide on debugging a dependency chain to troubleshoot a mod.

The example will use VirtualAtelier, but the same principle applies to each and any mod.

In the process of this guide, you will be told to check a certain mod's log file. If you don't know how to do that, check Finding and reading log files.

Theory: What is a requirement?

It is something that your mod needs to work; for that reason, requirements are also called dependencies. The game will load them first.

Most of them are other mods.

Can't I download a mod and be done with it?

Unfortunately, that is not how computers work.

More detail

Cyberpunk 2077 offers native modding support via REDmod, but it is limited — if we

Guide: Debugging a mod that's not working

Now that we've gotten the theory out of the way, let's get to the practical part. Below, you find an example of how the process will look – and after that, you find the steps to complete it yourself.

Example

You're trying to get VirtualAtelier to work. There is no log file and you want the full version, so you investigate ArchiveXL.

When you re-do Level 1, you can't find a log file for ArchiveXL either, so you look at its dependencies and find that you need Red4ext.

When you re-do Level 1 with Red4ext, you find an error in its log file that complains about version incompatibility. You realize that you forgot to complete Level 2 Step 3, update Red4ext, and Virtual Atelier starts working.

Rejoice!

Level 1: The mod itself

Situation

You're trying to install a mod — and it's not working. How do we fix this?

Step 0: Open your Cyberpunk game directory

If you aren't there yet, open your Cyberpunk 2077 game folder ("Browse local files" in Epic/Steam/GOG). This is where you installed the game.

Step 1: Try to find its log file

  • if you're debugging an Atelier Store, start with VirtualAtelier as a dependency.

  1. Use the Windows Search to find a matching log file (e.g. search for the mod's name - here are more instructions if you need them).

  2. If you have found a log file, read on under A log file exists

  3. If you have not found one or if it contains no errors or warnings, go to Your own HUD icons

A log file exists

-> If you can't find one, read on under The file only has warnings.

The file is empty

This means that your mod is loaded, but never initialized. Go to There is no log file, or it's empty

The file has errors

Something is wrong with the mod itself. You can now go and troubleshoot it.

The file only has warnings

Your mod is being loaded, so the dependencies are OK (if they aren't, the log file would tell you so).

Warnings in the log file don't necessarily mean that something is outright broken. But since you're here and your mod isn't working, that is probably the case. Proceed with troubleshooting.

There is no log file, or it's empty

The good news: the mod itself is not the problem.

The bad news: you'll have to check its requirements.

Let's do that now: read on under Level 2: The requirements

Level 2: The requirements

Step 1: Finding the requirements

Open the mod's Nexus page and check the Description tab (the first one). You will see something like this:

Step 2: Re-do Step 1 for each requirement

For each of the dependencies, repeat the following steps:

  1. Check if it is optional.

    • If there is a condition and you meet it (e.g. "if you are using Codeware" and you are using Codeware), consider it not optional.

  2. If it's no optional, install it.

  3. If you already have it installed, update it.

Now that you have the requirement installed, it's time to re-do Level 1, but do it with the requirement.

Last updated