Jump to content

SpeedMult AV Conflict Between Scrolling Speed Continued & Armor Enchantments


SojournerOne

Recommended Posts

I am having some issues with Scrolling Speed Continued changing the SpeedMult AV and overruling some enchantments that I have applied to Bandolier and Campfire backpack Armor-type objects.

 

Here is an example of the enchantment effects on a book holder.

 

Here is a screenshot of one of the enchantments in the Creation Kit.

 

I have applied effects like this to the backpacks from Campfire as well as all of the bags and pouches from bandolier. When I have a full complement of the highest tier gear from these mods equipped (1 backpack, 1 bandolier, and up to 6 box pouches), my SpeedMult AV drops to 86.50.

 

However, when ScrollingSpeed.pex does this:

 

  Reveal hidden contents

it wipes out all of the enchantments from the Campfire and Bandolier gear.
I tried adding a condition to each enchantment effect, if WornHasKeyword: 1Dr_BAN_Large (or normal, or medium, or small) == 1, but then the effects did not activate at all.
Can I change the ForceActorValue in ScrollingSpeed.pex to ModActorValue or something like that?
Edited by DarkEra99
Link to comment
Share on other sites

I think I'm on the right track, but I don't know exactly how to make it so that Scrolling Speed's modifies the player's current SpeedMult by the difference between SpeedMult = 100 and the slider values.

 

Any Papyrus wizards, take a look:

 

 

  Reveal hidden contents

 

Edited by DarkEra99
Link to comment
Share on other sites

Float SSM = PlayerRef.GetActorValue("SpeedMult")
SpeedDiff = SSM - speed_1
PlayerRef.ModActorValue("SpeedMult",-SpeedDiff)

The above stores the player's current speed multiplier then subtracts the desired speed multiplier value from the player's current value and finally the speed multiplier is modified negatively by the difference so that it ends up at the desired value.

Link to comment
Share on other sites

Jeez, I never woulda guessed that, I was gonna try

PlayerRef.ModActorValue("SpeedMult", PlayerRef.GetActorValue("SpeedMult") - (Speed_X - Speed_Y))

...or something, I don't even know if that was going to work.

 

I can't seem to find any references anywhere to the "SSM" function, other than this topic, do you know where I can read up on it? Is it an SKSE function? OID, no idea what I was talking about...

 

Thanks for the help BTW, I'll give this a shot...

Edited by DarkEra99
Link to comment
Share on other sites

OID's are a shorthand so you avoid re-typing lengthy formulas over and over, I get it! Yikes, hope I don't end up on GMAD for this, LOL.

 

What would you suggest for Lines 78 - 108 that have ForceActorValue, 145 - 186, and 414 to 420. These parts seem to be there to reset the SpeedMult when options are enabled or disabled, but I'm not completely sure. Either way they will also cause problems... Don't know to make it reset the AV to whatever the AV is prior to Scrolling Speed's changes.

Edited by DarkEra99
Link to comment
Share on other sites

I copy pasted that posted code earlier from my Controller Walk Run Toggle mod (just changed one variable to show how it could fit into your project). You can take a look at my mod's source script to see how the speed multiplier is set and reset.

 

I cannot give good advice on the script above as I'm having trouble reading it. The alternating highlighted numbered lines are difficult for me to read.

Link to comment
Share on other sites

  On 12/30/2018 at 2:27 PM, IsharaMeradin said:

I cannot give good advice on the script above as I'm having trouble reading it. The alternating highlighted numbered lines are difficult for me to read.

 

Fixed. That was weird.

 

 

  On 12/30/2018 at 2:27 PM, IsharaMeradin said:

I copy pasted that posted code earlier from my Controller Walk Run Toggle mod (just changed one variable to show how it could fit into your project). You can take a look at my mod's source script to see how the speed multiplier is set and reset.

 

Will take a look, thanks again. Now that I've slept, I realize it's probably as simple as subtracting current AV from 100 and adding the result back to the current AV.

Link to comment
Share on other sites

*digs out script for reference ... waits for Mod Organizer to load*

 

The second is a check to see if the menu is currently open at that moment. The first is a bool that is toggled when the menu is opened and closed. By themselves they both do the same thing, only allow action when false. However, it appears that I needed a little extra leeway after the menu is closed thus the bool toggle was added. The other is included because the "safe process" function was carried over from one of my other mods and modified as needed for the walk run toggle mod.

Link to comment
Share on other sites

Noob question, you define your functions after they are referenced in previous events, is this normal, or can the definitions be placed anywhere?

 

Apparently they only need to be at the beginning if they are defining variables in functions and events, according to this article.

Edited by SojournerOne
Link to comment
Share on other sites

  • Recently Browsing   0 members

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