Jump to content

No quen mod


PKMpl

Recommended Posts

Honestly I hate quen. I love Witcher 3 but quen makes every battle just a matter of time for me, ruining the entire experience. I tried making a mod that would disable it but I honestly had no idea what I was doing. All the mods I found which reduced it's effect etc seemed to no longer work with the current version. If someone could put together a mod that does just that I would be so happy. Ignoring quen just isn't an option, I will always have that feeling that I can just use it to win a hard fight.

 

Please moders, help me out.

Link to comment
Share on other sites

I can't test it, but try this:

 

1. Create the mods\modNoQuen\content\scripts\game\player path.

2. Copy the content\content0\scripts\game\player\r4player.ws file in the folder you've just created.

3. Edit the r4player.ws file with a text editor. Search for "event OnSpawned" and add "DisableRadialSlot('Quen', 'modNoQuen');" after variables declaration. Something like this:

event OnSpawned( spawnData : SEntitySpawnData )
{
	var atts : array<name>;
	var skill : ESkill;
	var i : int;
	var item : SItemUniqueId;

	DisableRadialSlot('Quen', 'modNoQuen');
		
	AddAnimEventCallback('ThrowHoldTest',           'OnAnimEvent_ThrowHoldTest');
	AddAnimEventCallback('OnWeaponDrawReady',       'OnAnimEvent_OnWeaponDrawReady');
	AddAnimEventCallback('OnWeaponHolsterReady',    'OnAnimEvent_OnWeaponHolsterReady');
	etc...
Disable all other mods while testing.
Link to comment
Share on other sites

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...