Register
Page 47 of 88 FirstFirst ... 37424344454647484950515257 ... LastLast
Results 691 to 705 of 1306
  1. #691
    DK Veteran

    Join Date
    Jul 2010
    Posts
    2,037
    Thanks Thanks Given 
    371
    Thanks Thanks Received 
    258
    Thanked in
    142 Posts

    Default

    Quote Originally Posted by zfkd View Post
    Hello,
    my script for VW Simos71.
    Read: Pin,Vin,Immo_sn,VW_Part_Nr,SW,Coding,Location,Typ, CS,Manufacture-ID
    Prod.Date.
    <ECUs VOLKSWAGEN><Simos71><96C86>
    HELLO
    Thank for your scrypt!!
    can you had 2 actions :change the vin and change the pin please
    many thank in advance

  2. #692
    Top Poster
    Join Date
    Sep 2009
    Location
    near Strzyzow
    Posts
    183
    Thanks Thanks Given 
    103
    Thanks Thanks Received 
    35
    Thanked in
    32 Posts

    Default

    There is something wrong in VIN reading. Doesn't have 16-th sign.
    Can You change it?

  3. #693
    Junior Member zfkd's Avatar
    Join Date
    May 2010
    Posts
    27
    Thanks Thanks Given 
    0
    Thanks Thanks Received 
    36
    Thanked in
    8 Posts

    Default Simos71 Explor update

    @newgeniehex all in connect upa press button ECU Infos.
    Now the button set pin is online, only for you and your serial number.

    Vin 17 is IO.

    Attached Files Attached Files

  4. The Following 4 Users Say Thank You to zfkd For This Useful Post:

    AMDOR (11th August, 2019), hbalazs (30th August, 2020), Jashmine1983 (6th December, 2014), pintobraz (29th July, 2014)

  5. #694
    Junior Member zfkd's Avatar
    Join Date
    May 2010
    Posts
    27
    Thanks Thanks Given 
    0
    Thanks Thanks Received 
    36
    Thanked in
    8 Posts

    Default Simos71 last

    Attached Files Attached Files

  6. The Following 5 Users Say Thank You to zfkd For This Useful Post:

    gameiruz (5th December, 2014), hbalazs (30th August, 2020), Jashmine1983 (6th December, 2014), mariusz971 (8th August, 2013), pintobraz (29th July, 2014)

  7. #695
    DK Veteran
    Join Date
    Mar 2010
    Posts
    343
    Thanks Thanks Given 
    108
    Thanks Thanks Received 
    29
    Thanked in
    17 Posts

    Default

    hello everyone can somebody please shar script files for north american market please ' i can give my UPA serial NUmber if you like
    thanks in advance

  8. #696
    Banned
    Join Date
    Feb 2010
    Posts
    580
    Thanks Thanks Given 
    117
    Thanks Thanks Received 
    161
    Thanked in
    70 Posts

    Default Denso

    Quote Originally Posted by hcip View Post
    you can make your own script than to ask members who have ready to use script,
    There is a lot of examples here, just an imagination and a simple calculation and you will be learn little by little, the others will not grab your knowledge from you

    as for example below, the instruction is for Toyota denso
    just to improve it and you can make it with your own



    /// ****************** Denso Code *************** //
    procedure NewKM;
    var
    n3,n2,new_KM: integer;
    n1,code,n4: String;

    begin
    SetProgramModifiedOnly( true );
    if InBox( 'Enter KM', 'New KM',code ) then begin


    if length( code ) >6 then begin
    if MsgBox( 'Out of Range', 'Error', MB_RETRYCANCEL ) = IDRETRY then begin
    NewKM;
    end;
    exit;
    end;

    /// *******CALCULATION ************** //
    new_km:= (strtoint(code)+1000000);

    n1 := '$' +inttostr(new_KM);
    n2 := strtoint(n1);
    n3 := $FFFFFFF - (n2);
    n4 := inttohex(n3,2);
    // ******* END of CALCULATION *********//



    //********* OFFSETS *********///
    SetByteHexEdit( $A,(strtoint ('$'+n4[2]+n4[3])));
    SetByteHexEdit( $9,(strtoint ('$'+n4[4]+n4[5])));
    SetByteHexEdit( $8,(strtoint ('$'+n4[6]+n4[7])));


    end;
    Hi hcip , copy this code and past on script ide but when i compile it show me syntax error ! please can you guide me first 2 or 3 step ... Thanks
    Attached Images Attached Images

  9. #697
    Senior Member dfi's Avatar
    Join Date
    Sep 2008
    Location
    Romania
    Posts
    267
    Thanks Thanks Given 
    52
    Thanks Thanks Received 
    34
    Thanked in
    13 Posts

    Default

    That is a script for old upa software, ver.1.1.

  10. #698
    DK Veteran
    hcip's Avatar
    Join Date
    Dec 2009
    Location
    From the heaven of paradise in the middle of happiness|hobby:__Bedtime| Sex:Female|Status:Not_Virgin
    Posts
    1,883
    Thanks Thanks Given 
    197
    Thanks Thanks Received 
    2,478
    Thanked in
    805 Posts

    Default

    @ Nomis

    Make it like this

    procedure Denso_C46;
    var
    x,n1,n2,n3,n4,n5,n6,n7,Code
    begin
    Code := Edit1.text
    clearmsgs;
    SetProgramModifiedOnly( true );
    case code of
    '',null:
    begin
    ShowMessage( 'Enter Number in a Textbox');
    exit;
    end;
    end;

    n7 :=0
    n1 := Inttostr(Round(strtoint(code)) +1000000);
    n2 := n1[7];
    n4 := Strtoint('$'+inttostr(int(round(strtoint(code))* 0.01))) xor $FFFF
    if strtoint(n2) <5 then n3 := $F else n3 := $A;
    n7 := (Strtoint('$'+n1[6]) xor 15) shl 4 xor n3;
    n6 := $80 ; x := 0;
    while x < $8 do begin
    SetByteHexEdit( x,$FF);
    x := X +1;
    end;
    n5 := strtoint(n2) mod 5 *2
    x := 0;
    while x < n5 do begin
    SetByteHexEdit( x,N6);
    x := X +2;
    end;
    x:= 8;
    while x< 19 do begin
    SetByteHexEdit( x, N7);
    SetByteHexEdit( x+1,n4 or $0);
    SetByteHexEdit( X+2,n4 shr 8);
    x := X +4;
    end;
    RefreshHexEdit;
    if MsgBox( 'Program Mileage?','Confirmation', MB_YESNO ) = IDYES then begin
    ProgramDevice;
    VerifyDevice
    end ;
    end;
    Last edited by hcip; 7th August, 2011 at 11:22 AM.


    Stupidity is not a disease, because there are no existing hospitals for Idiots!

    ​​

  11. The Following 2 Users Say Thank You to hcip For This Useful Post:

    gameiruz (5th December, 2014), pintobraz (2nd August, 2014)

  12. #699
    DK Veteran
    hcip's Avatar
    Join Date
    Dec 2009
    Location
    From the heaven of paradise in the middle of happiness|hobby:__Bedtime| Sex:Female|Status:Not_Virgin
    Posts
    1,883
    Thanks Thanks Given 
    197
    Thanks Thanks Received 
    2,478
    Thanked in
    805 Posts

    Default Denso Sample

    Here is a sample script ready
    Attached Files Attached Files


    Stupidity is not a disease, because there are no existing hospitals for Idiots!

    ​​

  13. The Following 9 Users Say Thank You to hcip For This Useful Post:

    audiotek (9th September, 2019), BBDOPAI (27th January, 2021), bordzs (21st February, 2017), hbalazs (30th August, 2020), Jashmine1983 (6th December, 2014), kidskung (10th February, 2024), kin51 (25th May, 2019), mexjack (4th May, 2020), pintobraz (29th July, 2014)

  14. #700
    Senior Member dfi's Avatar
    Join Date
    Sep 2008
    Location
    Romania
    Posts
    267
    Thanks Thanks Given 
    52
    Thanks Thanks Received 
    34
    Thanked in
    13 Posts

    Default

    You can still use old form of scripts if you don't know how to use the new IDE by clicking File-New-Script.

  15. #701
    Banned
    Join Date
    Feb 2010
    Posts
    580
    Thanks Thanks Given 
    117
    Thanks Thanks Received 
    161
    Thanked in
    70 Posts

    Default

    Thank you so much for your help . I think i need to know some very basic knowledge about pascal , how to work codes and functions .

    Regards.

  16. #702
    DK Veteran
    hcip's Avatar
    Join Date
    Dec 2009
    Location
    From the heaven of paradise in the middle of happiness|hobby:__Bedtime| Sex:Female|Status:Not_Virgin
    Posts
    1,883
    Thanks Thanks Given 
    197
    Thanks Thanks Received 
    2,478
    Thanked in
    805 Posts

    Default

    The Compiled *.Xscr script can easily change the name of the author so I think we need to protect it for bieng change by others who downloaded our works,

    as for example I changed the name of Xzcr script (Simos71) by ZFKD (attached)



    I also attached my sample script with my name, if anybody change my name in my works please try it. for most xscr script the name of the author can see if you open the xscr file in any hexeditor in ASCII

    if anybody can change my name I will move to another protection
    Attached Files Attached Files
    Last edited by hcip; 8th August, 2011 at 09:29 AM.


    Stupidity is not a disease, because there are no existing hospitals for Idiots!

    ​​

  17. The Following 8 Users Say Thank You to hcip For This Useful Post:

    audiotek (9th September, 2019), BBDOPAI (27th January, 2021), eliet2000 (4th June, 2023), hbalazs (30th August, 2020), hmagga (21st June, 2019), Jashmine1983 (6th December, 2014), lebneni (28th February, 2016), pintobraz (29th July, 2014)

  18. #703
    Top Poster

    Join Date
    Jul 2009
    Posts
    186
    Thanks Thanks Given 
    18
    Thanks Thanks Received 
    31
    Thanked in
    28 Posts

    Default

    HI EVERYONE
    I have created some scripts for my UPA programmer, but these scripts works with wathever UPA, maybe any one know how to programm in order to create a script which works only with my UPA (with my UPA serial).

    THANK YOU SO MUCH

  19. #704
    Member
    Join Date
    Nov 2009
    Posts
    40
    Thanks Thanks Given 
    1
    Thanks Thanks Received 
    22
    Thanked in
    8 Posts

    Default

    Quote Originally Posted by vinicio1716 View Post
    HI EVERYONE
    I have created some scripts for my UPA programmer, but these scripts works with wathever UPA, maybe any one know how to programm in order to create a script which works only with my UPA (with my UPA serial).

    THANK YOU SO MUCH
    You can use this function

    s := GetUUSPSerialNumber;
    if s = '00000000' then {Check with you serial}
    begin
    AddMsg('!!! No UPA-USB Connected !!!');
    AddMsg('UUPS Serial : ' + S);
    exit;
    end;

    For checking you serial!

  20. #705
    Top Poster

    Join Date
    Jul 2009
    Posts
    186
    Thanks Thanks Given 
    18
    Thanks Thanks Received 
    31
    Thanked in
    28 Posts

    Default

    THANK YOU SO MUCH, I AM GOING TO TRY IT
    EXCUSEME COULD YOU TELL ME HOW COULD I ENCRYPT MY SCRIPTS?? maybe with .udx??

 

 

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
This website uses cookies
We use cookies to store session information to facilitate remembering your login information, to allow you to save website preferences, to personalise content and ads, to provide social media features and to analyse our traffic. We also share information about your use of our site with our social media, advertising and analytics partners.