Tezarius Posted June 15, 2024 Posted June 15, 2024 Now the range is from -1 to 1, as I understand it is responsible for this script RaceMenuMorphsCBBE.pex The goal is to get it up to 10 and compile to pex, can anyone help me with that? Â I'm not good at scripting, I suspect that the function MorphUpdate() is responsible for this, and its values in lines 38 and 44... Â Also attached the code at the link https://privatebin.net/?d0b764b3e3f3a41a#BrN5JdESmUXr74vU3r9zoNUHWcBrf84sjw8owM75guXP RaceMenuMorphsCBBE.psc RaceMenuMorphsCBBE.pex
traison Posted June 15, 2024 Posted June 15, 2024 Event OnSliderRequest  Replace: AddSliderEx(displayNames[m], CATEGORY_KEY, CALLBACK_PART + morphs[m], -1.0, 1.0, 0.01, getBodyMorph(morphs[m])) ... AddSliderEx(displayNames2[m], CATEGORY_KEY, CALLBACK_PART + morphs2[m], -1.0, 1.0, 0.01, getBodyMorph(morphs2[m]))  With: AddSliderEx(displayNames[m], CATEGORY_KEY, CALLBACK_PART + morphs[m], -10.0, 10.0, 0.01, getBodyMorph(morphs[m])) ... AddSliderEx(displayNames2[m], CATEGORY_KEY, CALLBACK_PART + morphs2[m], -10.0, 10.0, 0.01, getBodyMorph(morphs2[m]))  1
Tezarius Posted June 15, 2024 Author Posted June 15, 2024 Optimally, it's more like 5 than 10... RaceMenuMorphsCBBE.pex
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now