Jump to content

Question about Witcher 3 Modding


kastion2000

Recommended Posts

Is there a way to change how many bolts can be fired from the crossbow before reloading (Like I want to change from 1 or 2 to 5)

 

Can it be done by editing vanilla scripts or can it be changed in the Combat Skills script which I use? ( https://www.nexusmods.com/witcher3/mods/5312)

 

I've seen mods for fully auto or infinite shots but I wanted something a little more grounded (And similar to the repeating crossbow Guts from Berserk carries)

 

 

s1wl7mN.png

 

Would greatly appreciate any help with this! Thanks!

Link to comment
Share on other sites

I managed to figure it out if anyone is interested.

 

In:

C:\Program Files (x86)\GOG Galaxy\Games\The Witcher 3 Wild Hunt GOTY\content\content0\scripts\game\gameplay\items\rangedWeapons

At line 668:

class Crossbow extends RangedWeapon
{
	protected	var shotCount				: int;
	protected	var shotCountLimit			: int;
	
	default shotCountLimit = 5; // <--------------------
	default shotCount = 0; 

That is all that is needed to make a 5 bolt clip / semi-auto crossbow. :geek:

Link to comment
Share on other sites

  • Recently Browsing   0 members

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