PDA

View Full Version : kia optima mileage correction



philipcoin
5th August, 2016, 09:00 PM
hello mates,

need help reduce mileage of 2014 kia optima eprom 24c16
old-43025km
new-41000km

thanks in advance

juancho18
5th August, 2016, 09:16 PM
try and report

Dr. Zoidberg
5th August, 2016, 09:16 PM
hi mate, try and report.


390625

vageric
5th August, 2016, 09:17 PM
here you go

ibratex
5th August, 2016, 09:17 PM
ok!!!.................

GameTheoryOptimal
5th August, 2016, 09:29 PM
this should make it. try and report.

edit: lollll I'm soooo late!

jomberykaso
6th August, 2016, 06:04 AM
all of you used the same script....lol......all files are ok

vageric
6th August, 2016, 07:59 AM
all of you used the same script....lol......all files are ok

i for shure dont use any script! lol

PremierD
6th August, 2016, 08:05 AM
all of you used the same script....lol......all files are ok


Standard rolling encryption mate .. only eejits need a script :)

Meat-Head
6th August, 2016, 08:09 AM
Standard rolling encryption mate .. only eejits need a script :)

Cool, rolling encyption on a milage, what ever next, great topic for the pub quiz
if anybody got an example (the formula) that would be great, thanks

PremierD
6th August, 2016, 08:16 AM
inverted hex xor FFFF >dec *32/16/8/4 .then left shift one nibble for 4 bytes then byte swap for the next 24 bytes .... that any clearer for you meaty ?

drpeter
6th August, 2016, 08:19 AM
inverted hex xor FFFF >dec *32/16/8/4 .then left shift one nibble for 4 bytes then byte swap for the next 24 bytes .... that any clearer for you meaty ?Or he can explain this in the pub, the short code version

begin
Var5 := 0;
Var2 := KM;
Var7 := Var2 shr 5 and 65535 xor $FFFF;

Var3 := $06;
while(Var3 <> $26)
do begin

he.SetByteData(Var3, (Var7 and 255));
Var3 := Var3 + 1;

he.SetByteData(Var3, (Var7 shr 8 and 255));


Var3 := Var3 + 1;
Var6 := Var7 * 2;
Var7 := (Var6 shr 16 + Var6) and 65535;

end;

clusters
6th August, 2016, 08:24 AM
inverted hex xor FFFF >dec *32/16/8/4 .then left shift one nibble for 4 bytes then byte swap for the next 24 bytes .... that any clearer for you meaty ?


Like MH understand that ffs :roflmao:

philipcoin
6th August, 2016, 01:55 PM
thanks to you ALL

new mileage is 40992km

i compared all files
are the same

thanks :)

jomberykaso
6th August, 2016, 11:03 PM
thanks to you ALL

new mileage is 40992km

i compared all files
are the same

thanks :)

Ibratex's file has a little difference on it

Meat-Head
7th August, 2016, 10:19 AM
Great thanks, for explaining that, be one of them jobs
you "have" to upload & leech off others.

thanks to premierd & drpeter for explaing that.