Jump to content

speed scripting help


m97860662

Recommended Posts

Hello,

I'm trying to have go doing scripting in the geck.

I'm trying to make a script and apply it to a clothing, which when worn will make me run faster.

Below it what I have tried,

 

Short Speed

 

BEGIN ONEQUIP

set Speed to player.getav SpeedMult 250

END

 

BEGIN ONUNEQUIP

set Speed to player.getav SpeedMult 100

END

 

 

 

After I've saved the script I then open a armor and selected and applied my new Script from the drop down list. I then saved and started up fallout, but on equiping the armor nothing happens.

 

I think I'm doing it wrong, Is there something that I should need to do?

Thank you very much.

Link to comment
Share on other sites

Hello,

I'm trying to have go doing scripting in the geck.

I'm trying to make a script and apply it to a clothing, which when worn will make me run faster.

Below it what I have tried,

 

Short Speed

 

BEGIN ONEQUIP

set Speed to player.getav SpeedMult 250

END

 

BEGIN ONUNEQUIP

set Speed to player.getav SpeedMult 100

END

 

 

 

After I've saved the script I then open a armor and selected and applied my new Script from the drop down list. I then saved and started up fallout, but on equiping the armor nothing happens.

 

I think I'm doing it wrong, Is there something that I should need to do?

Thank you very much.

 

 

Try

 

scn Speedup

Short Speed

BEGIN ONEQUIP
player.setav SpeedMult 250
END

BEGIN ONUNEQUIP
player.setav SpeedMult 100
END

 

That's quite a massive sppedmultiplier BTW

Link to comment
Share on other sites

Oh great! Thank you very much.

I've tried what you've given, and it works!

 

but on equip it's normal speed

and on unequip it speeds up.

strange.

 

So I swap the numbers around and it seems to work fine now.

 

 

BEGIN ONEQUIP

player.setav SpeedMult 100

END

 

BEGIN ONUNEQUIP

player.setav SpeedMult 250

END

 

 

Great! Thank you very much! I've clicked on your Kudos but it took me to another site - TES.

Anyways Thank you again.

Link to comment
Share on other sites

Oh great! Thank you very much.

I've tried what you've given, and it works!

 

but on equip it's normal speed

and on unequip it speeds up.

strange.

 

So I swap the numbers around and it seems to work fine now.

 

 

BEGIN ONEQUIP

player.setav SpeedMult 100

END

 

BEGIN ONUNEQUIP

player.setav SpeedMult 250

END

 

 

Great! Thank you very much! I've clicked on your Kudos but it took me to another site - TES.

Anyways Thank you again.

 

Yes you have to login there to give Kudos.

 

Hmmm, that shouldn't be how it works!

Link to comment
Share on other sites

  • 5 months later...
  • Recently Browsing   0 members

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