Jump to content

Increase morph limits in CBBE 3BA (3BBB)


Recommended Posts

Posted

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

Posted

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]))

 

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

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