Jump to content

Pinpoint Aim?


starwarswins

Recommended Posts

I've been messing with a weapon in the GECK.

 

Even when setting spread to zero, I'm still getting idle sway and the laser is still hitting below and to the right of the crosshair.

 

I want to make it hit directly in the center of the screen and not sway at all.

 

How do I do this? Is it an animation thing?

 

Here's some screenshot examples of what I mean. This is firing fullauto.

 

http://steamcommunity.com/profiles/76561197998319545/screenshots/

 

You can see how it isn't even hitting the center.

Edited by starwarswins
Link to comment
Share on other sites

An easy way of doing this would just be to add the "Steady" effect when the weapon's equipped. That ought to eliminate the sway. This is pretty simple to do, you just need to attach a script to your weapon that adds the "NVSteadyChemPerk" when it's equipped and remove it when it's unequipped. If you're unsure of how to do that, I'm happy to walk you through it.

Link to comment
Share on other sites

An easy way of doing this would just be to add the "Steady" effect when the weapon's equipped. That ought to eliminate the sway. This is pretty simple to do, you just need to attach a script to your weapon that adds the "NVSteadyChemPerk" when it's equipped and remove it when it's unequipped. If you're unsure of how to do that, I'm happy to walk you through it.

 

Okay, how do I do that?

 

You don't mean just the regular weapon effect like +1 to whatever stat or something, do you?

Link to comment
Share on other sites

No, it's a little bit more complicated than that. If you're unsure of how to add the script to your gun, read the "Trigger Script" portion of this, it'll tell you how to create a new script. Once you've got the script box open, you can use the script I've written below. Then go to your weapon and edit it. Find the box above the "object effect" box and then look for "SteadyGunScript". When you have found it, click on it and then click on "OK". Best of luck! :)

 

 

Scn SteadyGunScript

Begin OnEquip Player

Player.AddPerk NVSteadyChemPerk

End

Begin OnUnequip Player

Player.RemovePerk NVSteadyChemPerk

End

 

Link to comment
Share on other sites

No, it's a little bit more complicated than that. If you're unsure of how to add the script to your gun, read the "Trigger Script" portion of this, it'll tell you how to create a new script. Once you've got the script box open, you can use the script I've written below. Then go to your weapon and edit it. Find the box above the "object effect" box and then look for "SteadyGunScript". When you have found it, click on it and then click on "OK". Best of luck! :smile:

 

 

Scn SteadyGunScript

 

Begin OnEquip Player

 

Player.AddPerk NVSteadyChemPerk

 

End

 

Begin OnUnequip Player

 

Player.RemovePerk NVSteadyChemPerk

 

End

 

 

 

Thanks! It got rid of the sway!

 

But it's still hitting a little down and to the right...

Link to comment
Share on other sites

  • Recently Browsing   0 members

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