Pain101 wrote: ↑Sun Mar 31, 2024 1:50 am
...
I mentioned Triple Notch because I thought that one is supposed to allow you shoot x3 burst as if "Weapon : Infinite Size Clip" script was on. Now I got the skill to realize it's actually depending on Stamina bar and checking a max of 3. I'll see what I can find.
EDIT: OK, sorted it out:
- Open "Weapon : Set Burst Size To 20" script (right-click it > Change script).
- Head to line 32, click at the end of it and hit Enter so a new line is created.
- Paste this on the line you're now on, line 33:
Code: Select all
writeInteger( GrenadeEjectorResource + 0x140, 1 )
Should look like this:
- Click OK and re-run the script (tick to disable it; tick again to enable it).
Your weapon should now fire a burst of 20 projectiles, even if "Weapon : Infinite Size Clip" is off. Note that you won't see your ammo decrease by 20 on each shot, but will fire 20 projectiles.
On the hindsight,
Infinite Ammo can also be achieved by setting this:
writeInteger( GrenadeEjectorResource + 0x13C, 0 ). That is GrenadeEjectorResource->mAmmoToConsume property. Setting it to 0 makes it so you fire a projectile, but subtraction won't consume from clip/ammo
At the same time, setting it to 20 will make it so you fire 1 projectile, but consume 20 from clip/ammo. Where I'm leading with this: if your OCD is too strong still, then add this on a new line (line 34, after hitting Enter on line 33) in the script ->
writeInteger( GrenadeEjectorResource + 0x13C, 20 ). That way you now have burst size of 20 and consumption of 20.
Note that I've tested everything with the Hunter Bow, not sure how others will react.
Unfortunately, I won't do anything more for this, sorry. It'll have to do.
--
In the meantime, I was able to give myself XP (as if I made a Wildlife Kill):
With custom messages too
Amount can be customized as well. Here's to fast leveling up via gaining fake XP!
BR,
Sun