Does anyone know if I set the multipliers to 0 - no more HUD elements will pop up after killing an enemy? I am desperately looking for a mod that removes all experience and streer credibility bullshit stuff but am not able to find the right mod for it
Mod works fine, game version 2.21. Update all your core mods(CET, redscript, red4ext etc), and edit your multipliers in the mod file like the mod author specified.
The Author already specify that the menu has been removed (don't know why), but it looks like he abandoned his mods ... Disassemble As Looting Choice is not working either (i mean, does not have Mods Settings menu)
heres the EASIEST way to find and change. copy this sxpm_base.reds then paste it in the top right corner in the search bar in your Cyberpunk 2077 folder. Open it with Notepad. Change what you want and save. now i havent tried to see if it actually works but this is for those who just cant find where to go like i did after downloading the mod. everyone says what to do and where to go but doesnt say how to get there. Modding communities suck at explaining. even the bare basics explanations are over noobs heads 90% of the time.
This works (without the menu) in v2.0 with just redscript updated, for base XP and street cred, if you comment out line 86 sxpm_base.reds.
For non-technical users: i.e.; Make line 86 look like this (note the double-slashes): // LogChannel(n"SXPM", msg);
LogChannel was seemingly removed in v2.0, but apart from that and the menu stuff this seems to work fine with the latest version of RedScript as of 2023.09.26.
I can't comment on other multipliers in this - I suspect references to skills and XP sources that have been moved/removed might not work, but the above change is all that's needed to get it compiling happily, at least.
19 comments
I am desperately looking for a mod that removes all experience and streer credibility bullshit stuff but am not able to find the right mod for it
Thank you.
for you guys too?
EDIT:
The Author already specify that the menu has been removed (don't know why), but it looks like he abandoned his mods ...
Disassemble As Looting Choice is not working either (i mean, does not have Mods Settings menu)
ie., is:
0.6
or
.6
ok or are both ok?
Open that with notepad or something like that
// ------ Settings Start ------
// Multiplier for character level experience.
// Default = 1.0
this.settings.levelXPMultiplier = 1.0;
// Multiplier for street cred experience.
// Default = 1.0
this.settings.streetCredXPMultiplier = 1.0;
this.settings.headhunterSkillXPMultiplier = 1.0; // Headhunter multiplier
this.settings.netrunnerSkillXPMultiplier = 1.0; // Netrunner multiplier
his.settings.shinobiSkillXPMultiplier = 1.0; // Shinobi multiplier
this.settings.soloSkillXPMultiplier = 1.0; // Solo multiplier
this.settings.engineerSkillXPMultiplier = 1.0; // Engineer multiplier
// ------ Settings End ------
You will find these lines at the top of the file.
For non-technical users: i.e.; Make line 86 look like this (note the double-slashes):
// LogChannel(n"SXPM", msg);
LogChannel was seemingly removed in v2.0, but apart from that and the menu stuff this seems to work fine with the latest version of RedScript as of 2023.09.26.
I can't comment on other multipliers in this - I suspect references to skills and XP sources that have been moved/removed might not work, but the above change is all that's needed to get it compiling happily, at least.
Thanks for making this!