Jump to content

Recommended Posts

You could copy the walking canes file (cane.lua) and change the one value that says speed multiplier. Then you'd have to replace every instance of "cane" with a different name, including the file name. Lastly, add the new file name to modmain.lua as seen in other mods.

You could copy the walking canes file (cane.lua) and change the one value that says speed multiplier. Then you'd have to replace every instance of "cane" with a different name, including the file name. Lastly, add the new file name to modmain.lua as seen in other mods.

 

Even though I already knew most of this, thank anyways. The problem that I'm having is changing TUNING.CANE_SPEED_MULT's value. How do I do this..? I tried looking for some number that told how much to multiply the speed, but, as far as I know, there is none.

No... what does the line say?

 

inst.components.blablablawhocaresblabla = TUNING.SOMETHING

 

means that if you replace the tuning part with a different number (or increase it by multiplication, for example) you can customise the benefit.

 

inst.blablablaaahblah = 25

 

inst.blablablaaahblah = TUNING.SOMETHING * 1.5

No... what does the line say?

 

inst.components.blablablawhocaresblabla = TUNING.SOMETHING

 

means that if you replace the tuning part with a different number (or increase it by multiplication, for example) you can customise the benefit.

 

inst.blablablaaahblah = 25

 

inst.blablablaaahblah = TUNING.SOMETHING * 1.5

 

Oh.... thanks so much. I didn't know I could straight up change the amount. Thanks a lot!

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
×
  • Create New...