Unfortunately we do not accept new members for free, Now Registration cost 30€, if you are interesting Send Email to [email protected]

[GUIDE] E-sys Launcher Cheat Codes - How to Make your Own
27-08-2017, 00:05 AM,
Post: #11
RE: [GUIDE] E-sys Launcher Cheat Codes - How to Make your Own
(26-08-2017, 23:36 PM)cryptocar Wrote:  
(26-08-2017, 22:54 PM)Almaretto Wrote:  
(26-08-2017, 22:20 PM)cryptocar Wrote:  I've submitted a pull request for my cheat sheets a couple weeks back and even though it's all properly formatted as Almaretto describes and works on my own pro launcher, whoever maintains the repo on github asked me to reformat it but didn't give any guidance about how to reformat. I don't know who maintains the repo I just want to figure out what i need to do to get my PR accepted. Any help Almaretto?
Sent from my iPhone using Tapatalk Pro

Packetpilot and Botho approve. Not sure who else.

It is ironic that Packetpilot asked you to filter at your redundant codes when he has some of his own.


While some of my codes are redundant, a lot aren't since a lot of my codes are based on F025 mainseries. So until I made my own sheets there were maybe 2-3 modules out of 33 installed on the car that had any codes available. So just glancing over my codes a lot are redundant but in practice the vast majority are actually novel (in a manner of speaking. There's only a handful of things I've learned myself through translation, trial, & error like disabling xDrive, and didn't take from various posts and paper cheat sheets.). I'm gonna keep refining my sheets adding modules and various things from my 3 F series BMW's and then try another PR and talk to packetpilot to get my codes pulled. Thanks again for your insight and guide!


Sent from my iPhone using Tapatalk Pro

I concur. From what I remember, there were new codes added.


Quote this message in a reply
16-04-2018, 09:15 AM,
Post: #12
RE: [GUIDE] E-sys Launcher Cheat Codes - How to Make your Own
Hello there,
Thanks for this great guide. I have added a new code I discovered, an dI added it to the Github repository(simpaty.xml).
How long does it take to show up in Launcher to Sync?
Many thanks!
Quote this message in a reply
16-04-2018, 10:12 AM,
Post: #13
RE: [GUIDE] E-sys Launcher Cheat Codes - How to Make your Own
(16-04-2018, 09:15 AM)simpaty Wrote:  Hello there,
Thanks for this great guide. I have added a new code I discovered, an dI added it to the Github repository(simpaty.xml).
How long does it take to show up in Launcher to Sync?
Many thanks!

It needs to be committed and merged in to publicly display.

Then, when TM releases new versions, it will be included. For those using premium, xml's can also be manually downloaded.


Quote this message in a reply
16-04-2018, 12:14 PM, (This post was last modified: 16-04-2018, 12:31 PM by simpaty.)
Post: #14
RE: [GUIDE] E-sys Launcher Cheat Codes - How to Make your Own
(05-04-2017, 06:57 AM)Almaretto Wrote:  I recently shared some details on how to create your own E-sys Launcher Cheat Codes via PM. Since I already typed up, I thought it may be helpful for more individuals.

These Codes work for both Premium and Pro version of Tokenmaster's Launcher.
  • Pro: syncs with Github repository.
    • C:\Program Files (x86)\TokenMaster\E-Sys Launcher PRO\FDLCodes
  • Premium: you can manually download updates from same repositorry
    • C:\Program Files (x86)\TokenMaster\E-Sys Launcher Premium\FDLCodes
If you are not familiar with E-sys Cheat Codes, see video (@1:25): https://youtu.be/vaOwkcflFBE

The XML format is rather straightforward. There are plenty of examples (see directories above), but here are a few tips:
  1. Use Notepad++ to make changes. It has many advantages, including colors, dictionary to correct or insert words, HTML highlight function, search, & collapse on different levels.
    [Image: OwjQmn8t.png] ...... [Image: awC728gt.png]

  2. Start with Basic Shell (See details & examples of bold letters below):
    <?xml version="1.0" encoding="utf-8" ?>
    <FDL>
    <!--A-->
    <cafd id="B" name="C" author="A" series="D">
    <code description="E">
    <group id="F">
    <function start="G" end="G" comment="H" mask="G">I</function>
    </group>
    </code>
    </CAFD>
    </FDL>
    • A) Author Name = Eg, "Almaretto_Personal". I use same name as File (eg, Almaretto_Personal.xml). Author is used in configuration when selecting sheets as well as one of the filters. See "D" for second.
      [Image: V9MXG44t.png]
    • B) CAFD_ID = Eg, "000017BE" (Note: do not include full name like CAFD_000017BE_125_025_010)
    • C) ECU Name = Eg, "BDC_01"
    • D) Series (OPTIONAL), use only Main series (See CAFD_ID PDF, Pg 2 FAFP Table or PSdZ data mainseries folders) = Eg, "F015,I001". Use G011 not G012. This is second filter.
      [Image: 3Yx5Pp6t.png]
    • E)Description show in list of codes. Use keywords to filter results. Certain characters are allowed (eg, %), but do not use ones like "<" or "#" or "&."
    • F) 4 Alphanumeric CAF Section = EG, "3020". These are the main folders in CAF. If coding spans multiple groups, you can close group (ie </Group>) & start new one. As an example, see my coding for NGHB.
    • G) This is "Storage Info" (Start, End, Bitmask) = "9", "9", "00000001b". You can view in NCD / CAFD tool or E-sys (check Storage Info" box). If information is incorrect, you will have description, but nothing or part of code displayed when you "Review." You can have multiple functions between groups.
    • H) Comment (Optional). These show in third column when you select "Review" button. I sometimes use for funktion name (eg, "TCM_LOGIC_R_OFF_DOOR") to make verification of "G" [ie 1st (FDL) & 3rd column (Comment) would match]. You could also use to list additional information such as factory values or reminder to complete coding in other modules. See image below.
    • I) You can either use drop-down words (eg, "aktiv") or werte values (eg "01"). If you spell incorrectly, you will get errors or you might get incorrect selects for target.

    [Image: CCG1cgAt.png]

    Here is what it looks like filled in. Note how code start & end gets highlighted in purple to show complete arguments.

    [Image: ttrZyzFt.png]

  3. When you think you are done, you can open *file.xml in Internet Explorer. If you made a mistake (eg, use unacceptable characters or forget to close arguments), you will get something like:
    [Image: qEMIjcEt.png]
    If correct:
    [Image: 4bUw7ePt.png]



  4. If you make a mistake, you can correct. Then, select "Refresh" button to re-load available Cheat Codes.
  5. It is up to you whether you want to reduce amount of text by putting multiple options between each "CAFD_ID." It is pretty much just copy, paste, & change necessary information.
    • FDL brackets entire list
    • CAFD brackets ECU's. You can either put all functions under same group or divide up if you want to use different series filters
    • Code groups each selectable option
    • Group brackets all functions of a particular code within same section
Let me know if you have any questions. Enjoy!

(16-04-2018, 10:12 AM)Almaretto Wrote:  
(16-04-2018, 09:15 AM)simpaty Wrote:  Hello there,
Thanks for this great guide. I have added a new code I discovered, an dI added it to the Github repository(simpaty.xml).
How long does it take to show up in Launcher to Sync?
Many thanks!

It needs to be committed and merged in to publicly display.

Then, when TM releases new versions, it will be included. For those using premium, xml's can also be manually downloaded.

ok thanks! But is it me that need to commit/merge, or some administrator from that website?

for some reason my xml file has disappeared from the site...does it mean it was rejected? Strange...
Quote this message in a reply
17-04-2018, 00:38 AM,
Post: #15
RE: [GUIDE] E-sys Launcher Cheat Codes - How to Make your Own
(16-04-2018, 12:14 PM)simpaty Wrote:  for some reason my xml file has disappeared from the site...does it mean it was rejected? Strange...

I see it there.


Quote this message in a reply
17-04-2018, 06:01 AM, (This post was last modified: 17-04-2018, 17:54 PM by botho.)
Post: #16
RE: [GUIDE] E-sys Launcher Cheat Codes - How to Make your Own
(17-04-2018, 00:38 AM)Almaretto Wrote:  
(16-04-2018, 12:14 PM)simpaty Wrote:  for some reason my xml file has disappeared from the site...does it mean it was rejected? Strange...

I see it there.

You are right, I have merged the simpaty'pullrequest yesterday and have corrected a mistake in his file.

@Almaretto, 1 file for only one function ... I hesitated to merge it with your own file. Are you comfortable with that next time?


Attached Files
link.txt
File Type: .txt
Downloaded: 72 times
Size: 51 bytes

Quote this message in a reply
17-04-2018, 10:49 AM,
Post: #17
RE: [GUIDE] E-sys Launcher Cheat Codes - How to Make your Own
Thanks for committing. As I find new features which do not exist and are mainly for g series car I’ll obviously continue on the same file.
Quote this message in a reply
17-04-2018, 17:55 PM,
Post: #18
RE: [GUIDE] E-sys Launcher Cheat Codes - How to Make your Own
(17-04-2018, 10:49 AM)simpaty Wrote:  Thanks for committing. As I find new features which do not exist and are mainly for g series car I’ll obviously continue on the same file.

OK, I ask for merging in Almaretto file to avoid too many files ... You can post push request in his file for this
@Almaretto, you do you think about that ?
Quote this message in a reply
18-04-2018, 03:30 AM,
Post: #19
XZBMW  RE: [GUIDE] E-sys Launcher Cheat Codes - How to Make your Own
(17-04-2018, 17:55 PM)botho Wrote:  
(17-04-2018, 10:49 AM)simpaty Wrote:  Thanks for committing. As I find new features which do not exist and are mainly for g series car I’ll obviously continue on the same file.

OK, I ask for merging in Almaretto file to avoid too many files ... You can post push request in his file for this
@Almaretto, you do you think about that ?

I have no preference.

I just wish we would get rid of the redundancy. Kip_M3 has some functions in his sheet with me as Author.


Quote this message in a reply
[+] 2 users say Thank You to Almaretto for this post
19-04-2018, 09:37 AM,
Post: #20
RE: [GUIDE] E-sys Launcher Cheat Codes - How to Make your Own
(18-04-2018, 03:30 AM)Almaretto Wrote:  
(17-04-2018, 17:55 PM)botho Wrote:  
(17-04-2018, 10:49 AM)simpaty Wrote:  Thanks for committing. As I find new features which do not exist and are mainly for g series car I’ll obviously continue on the same file.

OK, I ask for merging in Almaretto file to avoid too many files ... You can post push request in his file for this
@Almaretto, you do you think about that ?

I have no preference.

I just wish we would get rid of the redundancy. Kip_M3 has some functions in his sheet with me as Author.

Done, redundancy is now deleted from Kip_M3 cheat
Quote this message in a reply
[+] 2 users say Thank You to botho for this post


Possibly Related Threads…
Thread Author Replies Views Last Post
XZBMW ESys Launcher PRO Setup 2.8.1 fengyonghua21 408 49,048 4 hours ago
Last Post: Pommie
  Disable CC messages relating to a CC-ID codes TheNine90 116 15,255 Yesterday, 23:29 PM
Last Post: Moldovan1
XZBMW Requesting FSC enabling codes for BMW F40 BMWF01 3 180 10-04-2024, 10:10 AM
Last Post: RuleNormaliai
  ISTA launcher console (v1.2.4.11 and up) Node 20 3,306 07-04-2024, 10:46 AM
Last Post: Joe2
  ISTA launcher problem Red_bean_bun 1 259 26-03-2024, 05:11 AM
Last Post: 2013m5
  NEED FA CODES FROM VIN E92 tigre 1 110 28-02-2024, 17:41 PM
Last Post: nBlacky
  Solved ✔ ista d 4.45.30 Launcher B O S S 10 1,481 04-02-2024, 18:24 PM
Last Post: B O S S
XZBMW TokenMaster Launcher 5.2 Update hayend 24 4,524 03-02-2024, 10:37 AM
Last Post: zero9
XZBMW bmw ista launcher console error Mathijshee 1 258 05-12-2023, 17:57 PM
Last Post: Node
  ISTA Launcher BMW888 0 497 05-12-2023, 12:01 PM
Last Post: BMW888

Forum Jump:


Users browsing this thread:
1 Guest(s)

Return to TopReturn to Content