I am running RC5.
Here's a copy of my movecost.cfg. Does it look right to you Maud? If I read it correctly there is a higher cost when running mounted at lower weights versus running unmounted. Is that the way it should be?
Oh and thanks to OnG for his quote from corechanges. I drew a blank trying to remember where move cost was defined. BTW Pierce the link didn't show in your post.
Code:
/////////////////////////////////////////////////////////////////////////////
//
// movecost.cfg: used by core to calculate movement costs based on
// carrying capacity and weight carried
//
// the first value is the percentage of carrying capacity
// carried; the second is the multiplier for movement cost
//
// intermediate values are interpolated linearly.
//
// Edit this file with care -- there's not a lot of error checking
//
/////////////////////////////////////////////////////////////////////////////
Walking
{
1 0.10
25 0.25
50 0.50
75 0.75
100 1.00
Over 60.0 // if somehow carrying more than your carrying capacity
}
Running
{
1 0.25
25 0.50
50 0.75
75 1.00
100 10.0
Over 120.0 // if somehow carrying more than your carrying capacity
}
Running_Mounted
{
1 1.00
100 2.00
Over 200.00
}
Walking_Mounted
{
1 0.25
100 0.50
Over 50.00
}