View Single Post
Old 03-03-2015, 06:51 PM   #2399
steve99
Banned
 
Join Date: Dec 2013
Drives: FT86
Location: Australia
Posts: 7,996
Thanks: 1,035
Thanked 4,992 Times in 2,983 Posts
Mentioned: 598 Post(s)
Tagged: 2 Thread(s)
Quote:
Originally Posted by elBarto View Post
I converted my own A00G OFT XML to the metric system.
It is quite simple (thanks to Kodename47 XMLs and info)

Just open it with Notepad++ and find:

Code:
<scaling units="Vehicle Speed (MPH)" expression="x*.621" to_byte="x/.621"
And replace it with:
Code:
<scaling units="Vehicle Speed (Km/h)" expression="x" to_byte="x"
Then press the 'replace all' button and done, everthing is km/h

Then find the string:
Code:
scaling units="psi" expression="x*.01933677" to_byte="x/.01933677"
and replace them all with:
Code:
scaling units="bar" expression="x*.001333223" to_byte="x/.001333223"
Finally convert F to C
Find
Code:
<scaling units="Degrees F" expression="(x*1.8)+32" to_byte="(x-32)/1.8"
replace all with
Code:
<scaling units="Degrees C" expression="x" to_byte="x"
But I don't know if you can switch from an OFT XML with LC and FFS inside the Rom to a normal Rom XML without those tables. Maybe @Kodename47 or @steve99 kan answer this?
Because otherwise it's just editing Kodename47's XML to work with a 700G rom.
LC/FFS is a code patch in the OFT rom , to be able to access the tables for LC/FFS you would have to copy the relivant xml code that defines those tables from the oft rom to kodename47 roms.
steve99 is offline   Reply With Quote
The Following 2 Users Say Thank You to steve99 For This Useful Post:
elBarto (03-03-2015), ST-A (03-04-2015)