Tip Run Minecraft WITHOUT a launcher! There are several ways to install a skin.

Hi all. Since when I was looking for information myself I suffered a lot, here I want to tell everyone who needs it how it’s done.
To launch Minecraft you need to create a special launch command. The command changes from version to version.
In order for the batch file to work correctly, some conditions must be met:
1) All paths in the batch file must be absolute, the files and folders to which they lead must exist.
2) All paths in the batch file must be enclosed in double quotes (“path”), otherwise they may not work if there are spaces.
3) It is advisable that there are no spaces in the names of files and folders in the client.
4) There should be no line breaks in the launch command (enter-s in simple terms), the entire command should be one whole line.

For example, my client was located in the folder C:\1\Hyperion\, so you will have your own, so all the paths will change.
I got the following batch file for version 1.6.4 (For clarity, I divided the entire launch command with enters, but there shouldn’t be any inside the batch file):

"C:\Program Files\Java\jre1.8.0_45\bin\javaw.exe" -Xmx512M -Djava.library.path="C:\1\Hyperion\versions\ForgeOptiFine_1.6.4\natives" -cp "C: \1\Hyperion\libraries\optifine\OptiFine\1.6.4_HD_U_D1\OptiFine-1.6.4_HD_U_D1.jar"; "C:\1\Hyperion\libraries\fyberoptic\forgefix\1.6.4\forgefix-1.6.4.jar"; "C:\1\Hyperion\libraries\net\minecraftforge\minecraftforge\9.11.1.965\minecraftforge-9.11.1.965.jar"; "C:\1\Hyperion\libraries\net\minecraft\launchwrapper\1.8\launchwrapper-1.8.jar"; "C:\1\Hyperion\libraries\org\ow2\asm\asm-all\4.1\asm-all-4.1.jar"; "C:\1\Hyperion\libraries\org\scala-lang\scala-library\2.10.2\scala-library-2.10.2.jar"; "C:\1\Hyperion\libraries\org\scala-lang\scala-compiler\2.10.2\scala-compiler-2.10.2.jar"; "C:\1\Hyperion\libraries\lzma\lzma\0.0.1\lzma-0.0.1.jar"; "C:\1\Hyperion\libraries\net\sf\jopt-simple\jopt-simple\4.5\jopt-simple-4.5.jar"; "C:\1\Hyperion\libraries\com\paulscode\codecjorbis\20101023\codecjorbis-20101023.jar"; "C:\1\Hyperion\libraries\com\paulscode\codecwav\20101023\codecwav-20101023.jar"; "C:\1\Hyperion\libraries\com\paulscode\libraryjavasound\20101123\libraryjavasound-20101123.jar"; "C:\1\Hyperion\libraries\com\paulscode\librarylwjglopenal\20100824\librarylwjglopenal-20100824.jar"; "C:\1\Hyperion\libraries\com\paulscode\soundsystem\20120107\soundsystem-20120107.jar"; "C:\1\Hyperion\libraries\argo\argo\2.25_fixed\argo-2.25_fixed.jar"; "C:\1\Hyperion\libraries\org\bouncycastle\bcprov-jdk15on\1.47\bcprov-jdk15on-1.47.jar"; "C:\1\Hyperion\libraries\com\google\guava\guava\14.0\guava-14.0.jar"; "C:\1\Hyperion\libraries\org\apache\commons\commons-lang3\3.1\commons-lang3-3.1.jar"; "C:\1\Hyperion\libraries\commons-io\commons-io\2.4\commons-io-2.4.jar"; "C:\1\Hyperion\libraries\net\java\jinput\jinput\2.0.5\jinput-2.0.5.jar"; "C:\1\Hyperion\libraries\net\java\jutils\jutils\1.0.0\jutils-1.0.0.jar"; "C:\1\Hyperion\libraries\com\google\code\gson\gson\2.2.2\gson-2.2.2.jar"; "C:\1\Hyperion\libraries\org\lwjgl\lwjgl\lwjgl\2.9.0\lwjgl-2.9.0.jar"; "C:\1\Hyperion\libraries\org\lwjgl\lwjgl\lwjgl_util\2.9.0\lwjgl_util-2.9.0.jar"; "C:\1\Hyperion\versions\ForgeOptiFine_1.6.4\ForgeOptiFine_1.6.4.jar" -Dfml.ignoreInvalidMinecraftCertificates=true -Dfml.ignorePatchDiscrepancies=true -XX:+UseConcMarkSweepGC -XX:+CMSIncrementalMode -XX:-UseAdaptiveSizePolicy -Xm n128M net .minecraft.launchwrapper.Launch --username ReaktivGirl --session null --version ForgeOptiFine_1.6.4 --gameDir "C:\1\Hyperion" --assetsDir "C:\1\Hyperion\assets\virtual\legacy" -- tweakClass cpw.mods.fml.common.launcher. FMLTweaker --width 925 --height 530

Example: start.zip

Next.
For those who want to make their own launcher, I’ll tell you how I do it.
For writing, I use Delphi 7 because I don’t know how to use anything else.
There are several ways to run third-party files in Delphi:

1) Using the WinExec operator

WinExec(PAnsiChar("command"), SW_SHOWNORMAL);

This method refused to work for me. I assume that PAnsiChar() is simply not capable of passing such a long string

2) Using the ShellExecute operator

ShellExecute(0,"open","command",nil,nil,sw_hide);

For me, this method said that the command was too long and refused to work.

3) Due to the problems in the first two methods, I decided to use the third method: Collect a launch command, put it in a batch file, launch the batch file from Delphi.
Here are the key pieces of code:

Memo1.Text:=le0; //Push the received full team start in memo memo1.Lines.SaveToFile("start.bat"); //Save everything that is in the memo into a text (bat) file, and don’t ask why from the memo - because it’s clearer this way ShellExecute(0,"open","start.bat",nil,nil,sw_hide); //Launch the resulting batch file in hidden mode (sw_hide - hidden, for debugging use sw_show - show) sleep(1000); //Wait a second for the batch file to complete DeleteFile("start.bat"); //Delete the damn body file so that cunning users don’t launch it later without us

Here's the source:

If anyone needs the client itself for testing, I can send it personally; I think it’s irrational to attach it here.

ZY For example, the most convenient way is to steal a working launch command from someone else’s launcher. For example, TLauncher helped me; in its settings there is a checkbox “Show full launch command”, thanks to which you can dig out this command from the console later. Special thanks to the creators of TLauncher. If anyone offers a better option for launching from Delphi 7, I will be very happy. Just please provide examples, otherwise bare words are of little use. It would also be nice if someone smart would describe for non-shared people how authorization works.

Click to expand...

Oru.
Do your launchers have batch files for launching?

TL Launcher is free program to download and run Minecraft. First, you need to download the Minecraft launcher from the links below. There are two versions available to choose from, one for Windows and the other universal for any operating systems. After downloading, run the program and create a profile, you can use an official account with licenses or enter only your nickname. If you chose the second, then it is called local account, the only drawback is that you will not be able to play on servers where you need licensed version games. Then select the version and click the start button, after downloading the client from the servers, the game will start. Have a nice game!

Download TL launcher for Minecraft

This launcher is positioned as a more functional alternative to the official one. The advantages include a user-friendly interface, flexible Java settings and the amount of memory allocated for it. For fashionistas, support for the Ely.by skin system is provided. Also in the list of Minecraft versions there are options already with integrated Minecraft Forge and Optifne. That is, you can immediately start installing mods and textures. Another big plus is the absence of annoying advertising and all functionality is completely free. Just download TL Launcher and you can start playing right away. Initially this program was called differently, but due to problems with naming rights it was renamed TL. But the design remains the same, and the capabilities and functionality have only become better.

How to install TL Launcher

  1. Install Java (if you don't have it installed)
  2. Download and launch the Minecraft launcher

There are several ways to install a skin

  • Buy the game and install this skin on the official website: https://minecraft.net/profile
  • Find the skin you like by nickname and use this name when creating a local account
  • Register on Ely.by and use the launcher to log in through your Ely.by account. In this case, your skin will only be seen by those who use this skin system

Screenshots


With it you can install mods, textures, skins, maps and seeds in one click.


After version 1.6, the developers introduced a new official launcher, which put an end to pirates, but we will save you by posting an excellent alternative. It is much better than even the one from the game developers, since everything is much more stable, there are more settings and functions. Therefore, you should pay attention to this Launcher for Minecraft.

Questions and answers about the Launcher (FAQ):


Question: Are there viruses in the launcher?
Answer: Naturally not! We are a reputable site that is trusted by many users. All antivirus programs consider this file to be safe, so there should be no reason to worry. To make sure of this, you can look at the antivirus report.

Question: The launcher/game worked before, but now it doesn’t, what should I do?
Answer: Try to completely delete the minecraft folder, just before that save your worlds from the saves folder (The full path to the game folder is c:\Users\UserNAME\AppData\Roaming\.minecraft\), then you need to re-install download TLauncher follow the links above and now try to launch the game/launcher.

Question: I downloaded and tried to run the program, but some error related to Java was displayed, what should I do?
Answer: Apparently you don’t have the latest version or it’s not the latest version, you can download it from our website or from.

Question: I don’t have any versions in the list - “not installed”, the news is not loading, how can I fix it?:


Answer: You are not connected to the Internet or your antivirus and firewall are blocking the connection. Therefore, add the launcher to your antivirus and firewall exceptions. P.S. Didn't help? Try downloading the launcher from the link at the beginning of the news, you never know.

Question: Which versions of Minecraft are present in this launcher?
Answer: It has absolutely everything, from the oldest to the latest versions (Like the new one). And also there is Forge 1.14.4, Optifine 1.14.4, Forge 1.13.2, OptiFine 1.13.2, OptiFine 1.13.1, OptiFine 1.13, OptiFine 1.12, Forge 1.12, OptiFine 1.11, Forge 1.11, OptiFine 1.10.2, Forge 1.10.2, OptiFine 1.9, Forge 1.9, OptiFine 1.8.9, Forge 1.8.9, Forge 1.8, OptiFine 1.8, Forge 1.7.10, OptiFine 1.7.10, Forge 1.5.2, OptiFine 1.5.2 and others...

Question: How is this launcher different from the same one? TLauncher Legacy?
Answer: Completely to everyone, from appearance(which is more pleasant), to interesting functionality: a mod-pack system (installing mods, maps in one click), a skin system with support for cloaks and HD! There are smaller advantages, such as the game news area, where you can quickly learn the latest innovations. Fast technical support on various issues and much more.

Question: Or maybe MLauncher better?
Answer: This is fundamentally wrong, because you can call it stripped down, which only has a list of servers. TL also has this plus - its own list of Minecraft servers, as well as all the other advantages described in the news that are not implemented in the launcher. In addition, the lack of introduction of new functions negatively affects the gameplay of players.

Question: Which latest version of TLauncher?
Answer: At the moment the latest stable version is TLauncher 2.68.

You can find solutions to other problems on a special page: .

Description:


The developers proudly declare that it is the easiest to use, you can see this by reading short review by launcher.

Looking at the screenshot at the beginning of the article, you see that most of the launcher is occupied by a web page on which latest news versions of the game, and sometimes the portal itself. Therefore, you will always see that a new version has been released, and you will also be able to read what has changed in it, so you will not need to look for this information on the Internet.

On home page In the lower left corner of the launcher there is a field for entering your nickname, which will be used in the online game.

Under this line there is another drop-down list, in it you can find the versions of the game, usually the latest version, or the one you launched last time.

Having selected a version that you have not downloaded, you will be prompted to install it by clicking on the "Install" button (Since this Minecraft pirate launcher, it will install the game for free):


By default, in minecraft launcher You don’t need to change anything in the settings, but if you want, you can see what’s there:


In addition, with the major update 2.0, TLauncher now has its own skin system, so now you don’t have to use third-party ones. And this gives more advantages - stability and more goodies. To install, you need to register on the TLauncher website, install the skin and log in to the launcher itself. Then select the version with the TL icon and run it. You can read a more detailed one; on our website, in a separate article, everything is sorted out.


In the new major update 2.4, the developers pleased us with their own system for installing mods in one click. A TL MODS button has appeared in the lower right corner of the launcher, by clicking on which you can open a page with the catalog and management of the new system.


All new system tied to a mod pack (assemblies with mods). The first tab is called mod packs, in it you can find various assemblies on different topics: military, fantasy, technical and others. The catalog is quite large, you can select a category for quick search.


By clicking on the mod pack you are interested in, it will open full description. Where can you find brief information about the essence of the assembly, as well as picture tabs; versions; fashion; resource packs; cards. To start playing on it, just click on “Install” and it will appear in the list of versions, launch it and you’re done!


Naturally, through this system you can create your own mod pack, filling it with various mods, maps and resource packs. The system helps the user with various problems and in particular thinks about mod compatibility for him. In addition, there is a backup and manual installation system. Really worthy update!

Pros of this launcher:

Stability;
- No need for constant Internet access;
- Easy to use;
- Multilingual;
- All versions of the game + with mods;
- Fine-tuning the game;
- Analysis of crashes and errors;
- Constant updates;
- Catalog with mods, resource packs and maps. And install them in one click!
- Multiplatform;
- Free skin installation;
- Ability to install a cloak and HD skins;
- Animated raincoats!

How to launch Minecraft launcher on MacOS?


1. Install Java. (If there is any error, read point 2.)
2. Go to settings -> Protection and security -> click on the lock and enter the username and password for the computer -> from the item: “Allow the use of programs downloaded from” select “Any source”, a warning will pop up, we agree.


3. Download the launcher from the link above (Link called MacOS/Linux).

4. Launch the launcher by double-clicking the left mouse button.


Download old version TLauncher 2.22


Launcher version 2.22 remains popular and moderately stable, so download links remain. Although it is always better to use the current one.

Windows:

(downloads: 2507951)

MacOS/Linux:

(downloads: 418161)

Version history:
2.69:
- Shaders in the mod-pack system!
- Updated digital signature;
- Bug fixes.

2.685 Beta:
- Bug fixes.

2.684 Beta:
- Updated digital signature of the file;
- Bug fixes.

2.683 Beta:
- Bug fixes.

2.682 Beta:
- Shaders in the mod-pack system are already available!
- Bug fixes.

2.681 Beta:
- Bug fixes.

2.68:
- Bug fixes.

2.672 Beta:
- Bug fixes.

2.671 Beta:
- Bug fixes.

2.67:
- Bug fixes.

2.669 Beta:
- Bug fixes.

2.668 Beta:
- Bug fixes.

2.667 Beta:
- Bug fixes.

2.666 Beta:
- Bug fixes.

2.665 Beta:
- Bug fixes.

2.664 Beta:
- Bug fixes.

2.663 Beta:
- Bug fixes.

2.662 Beta:
- Bug fixes.

2.661 Beta:
- Bug fixes.

2.66:
- Bug fixes.

2.66 Beta:
- Bug fixes.

2.65:
- Bug fixes.

2.65 Beta:
- Bug fixes.

2.64 Beta:
- Bug fixes.

2.63 Beta:
- Bug fixes.

2.62 Beta:
- Bug fixes.

2.61 Beta:
- Bug fixes.

2.6 Beta:
- Bug fixes.

2.586 Beta:
- Bug fixes.

2.585 Beta:
- Bug fixes.

2.584 Beta:
- Bug fixes.

2.583 Beta:
- Added TL versions to 1.14.
- Bug fixes.

2.582 Beta:
- Bug fixes.

2.581 Beta:
- Bug fixes.

2.58 Beta:
- Bug fixes.

2.57 Beta:
- Bug fixes.

2.56 Beta:
- Forge 1.13.2 support.
- Bug fixes.

2.55 Beta:
- Bug fixes.

2.54 Beta:
- Bug fixes.

2.53:
- New Year's update!
- Bug fixes.

2.53 Beta:
- Bug fixes.

2.52 Beta:
- Bug fixes.

2.51 Beta:
- Bug fixes.

2.5 Beta:
- Fixed a problem when connecting to the server, the error "Network is unreachable".

2.49 Beta:
- Fixed a problem with launching Minecraft 1.13.2.
- Bug fixes.

2.48:
- Added support for Rift and OptiFine 1.13 and 1.13.1
- Fixed bugs in mod packs.

2.48 Beta:
- Bug fixes.

2.47 Beta:
- Added OptiFine versions 1.13 and 1.13.1

2.46 Beta:
- Rift Mods support.

2.45 Beta:
- Support for Optifine 1.13;
- A system for completely deleting game files and settings has appeared in the launcher settings;
- Improvements in the launcher update system;
- Improved support for Java 10;
- Fixed a bug with maps in mod packs.

2.44 Beta:
- Bug fixes.

2.43 Release:
- New page with mod packs. Create your own assemblies or download ready-made ones.
- Minecraft 1.13 support.

2.43 Beta:
- Bug fixes.

2.42 Beta:
- Bug fixes.

2.41 Beta:
- Bug fixes.

2.393 Beta:
- Bug fixes.

2.392 Beta:
- Bug fixes.

2.391 Beta:
- Bug fixes.

2.39 Beta:
- Bug fixes.

2.37 Beta:
- New update window! Bright and modern, as well as more opportunities to bring you news.

2.36 Beta:
- Technical update with mandatory update to 2.37.

2.35 Beta:
- Fixed a bug with low FPS in the game.

2.34 Beta:
- Bug fixes.

2.33 Beta:
- Improved mod pack removal function;
- Bug fixes

2.32 Beta:
- Improved stability of snapshots;
- Bug fixes

2.31 Beta:
- Bug fixes

2.3 Beta:
- Bug fixes

2.28 Beta:
- Fixes related to Amazon blocking in Russia (Now the game should definitely load).

2.27 Beta:
- Fixes related to Amazon blocking in Russia.

2.26 Beta:
- Fixed bugs related to the mod-pack system and general improvements.

2.25 Beta:
- Fixed bugs related to the mod-pack system and general improvements.

2.24 Beta:
- Meet the mod pack system: Install mods, texture packs and maps in one click!

2.23 Beta:
- Fixed a bug with launching snapshot 17w43.
- Added support for Java 9.

2.22 Release:

- Bug fixes.

2.22 Beta:
- Bug fixes.

2.21 Beta:
- Added versions Optifine 1.12 and ForgeOptifine 1.12.

2.20:
- Fixed error java.lang.NullPointerException: Complete version is NULL.

2.20 Beta:
- Bug fixes.

2.19:
- Bug fixes.

2.18:
- Fixed an error when launching snapshot 17w13b;
- Other fixes.

2.18 Beta:
- Fixed an error when launching snapshot 17w13b.

2.17 Release:
- Updated game installation system;
- Now TLauncher.org skins are displayed by default to all launcher users - even without using accounts;
- Bug fixes...

2.17 Beta:
- Updated game installation system.

2.16 Beta:
- Bug fixes...

2.15 Beta:
- Bug fixes...

2.14 Beta:
- New icon for licensed accounts;
- Fixed a bug with the Full screen mode checkbox;
- Bug fixes...

2.12 Release:
- Bug fixes...

2.12 Beta:
- Bug fixes...

2.1 Release:
- Added versions ForgeOptiFine 1.11 and ForgeOptiFine 1.10.2;
- Fixed an error when logging into the server from the main page.;
- Other bug fixes...

2.091 Beta:
- Bug fixes...

2.09 Beta:
- Bug fixes...

2.08 Beta:
- Bug fixes...

2.07 Beta:
- Bug fixes...

2.06 Beta:
- Bug fixes...

2.05 Beta:
- Bug fixes...

2.04 Beta:
- Fixed a bug with the developer console;
- Fixed a bug with authorization through TLauncher accounts;
- Fixed a bug with blocking the login field;

2.03 Release:
- Fixed errors with starting the game.

2.03 Beta:

Fixed an error when logging into the game related to licensed accounts.

2.0 Release:

Completely new launcher design!;
- Install your own skin on tlauncher.org;
- Added the following launcher translations: German, Polish, Italian, Romanian, Spanish, Chinese.

2.01 Beta:

Fixed issue with Java 7.

2.0 Beta:

Update before release!.

1.974 Beta:

1.973 Beta:

Design improvements (Beta!).

1.972 Beta:

New application design (Beta!).

1.971 Beta:

Auto installation new version Java 8 for Java 7 users
- Bug fixes

1.97 Beta:

Bug fixes

1.9692 Beta:

Increased account protection
- Added icons to versions in server windows

1.9691 Beta:

Fixed errors with displaying skins on servers.

1.969 Beta:

Install your own skin thanks to tlauncher.org authorization.
- New language: Chinese.

1.968 Beta:

The launcher loading bar appears earlier.
- New launcher languages: Italian, Portuguese, Polish and Romanian.
- Launcher libraries are now stored in the folder specified in the settings.

1.967 Beta:

Reduced the size of the launcher, again!
- Improved the update system.
- Bugs fixed.

1.966 Beta:

Now the launcher weighs 2 times less! (All libraries have been moved to a separate folder, downloaded once)
- Three new launcher languages: German, French and Spanish

1.965 Beta:

Minor fixes.

1.964:

Fixed a problem when installing versions manually.
- Bug fixes.

1.964 Beta:

Minor fixes.

1.963 Beta:

Minor fixes.

1.962 Beta:

Fixed an error when installing versions manually.
- Now, if an error occurs, you can indicate your email and your comments on the error when sending a report to the server.
- Other minor fixes.

1.961:

Support for the new game version 1.9!

- Statistics collection system.
- Bug fixes.

1.96 Beta:

Fixing problems with latest versions snapshots.
- Improved background loading in the launcher.
- Improved analytics.
- Bug fixes.

1.955 Beta:

Added statistical functions to help developers develop the launcher.
- Bug fixes.

1.954:

New version released! All innovations from beta versions have been added (Licensed accounts, separate page for servers).
- Improved mirror system.
- Bug fixes.

1.952 Beta:

New features added for release (Not available yet!)
- Bug fixes.

1.951 Beta:


- Bug fixes.

1.95:

New version released! All innovations from beta versions have been added.
- Bug fixes.

1.94 Beta:

Added a mirror for data (If unavailable main servers, the launcher will function normally, requesting everything from the mirrors);
- Bug fixes.

1.93 Beta:

User error reporting system;

That is, if any errors occur, you will be asked to send it to us so that we can solve it!

Review system in the launcher (For beta versions, under the "Play" button. For release versions, in the settings menu);

If you have any suggestions or find a bug in our launcher, you can let us know about it through the feedback system!

Automatic connection to the server from the news page (If the server is hosted);

If we place servers on the news page, you can connect to it in one click and start playing. Just hover your cursor over the server's IP and a menu will appear in which you need to select "Login to the server."

Launcher improvements on Linux systems;
- Fixed flaws in the design of the launcher on Mac OS X;
- Bug fixes...

Share: