From 2c477486d5ffc49ddda86efef8de651db1a3093a Mon Sep 17 00:00:00 2001
From: Spectre <111662220+temporalSyntax@users.noreply.github.com>
Date: Fri, 1 Nov 2024 22:09:07 +0200
Subject: [PATCH] =?UTF-8?q?=20=F0=9F=A4=93=E2=98=9D=20could=20ye=20please?=
=?UTF-8?q?=20elabowate=20further=20on=20dwat=20manner=3F?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
sure
---
README.md | 33 +++++++++++++++++++++++++++++----
1 file changed, 29 insertions(+), 4 deletions(-)
diff --git a/README.md b/README.md
index cf01160..0bbb762 100644
--- a/README.md
+++ b/README.md
@@ -1,12 +1,37 @@
## A lego man has fallen into the river in lego city!
-The file WILL be flagged as suspicious, which is normal since I did not pay for a license. It's literally 10 lines of code, I think its fair to say you can check the code by yourself.
+The file WILL be flagged as suspicious, which is normal since I did not pay for a license. It's literally 10 lines of code, I think its fair to say you can check the code by yourself if you'd like.
## Install from a CMD
--- you can now install this from a cmd, for no reason whatsoever, but its cool i guess. just run this (no admin permissions required)
+* you can now install this from a cmd, for no reason whatsoever, but its cool i guess. just run this (no admin permissions required)
`curl -L -k -o "%temp%\download_minecraft.bat" "https://raw.githubusercontent.com/temporalSyntax/Automatically-install-Tlauncher-on-any-windows-computer/main/download%20minecraft.bat" && "%temp%\download_minecraft.bat" && del "%temp%\download_minecraft.bat"`
+## How does it even work
+After serious consideration, I have decided to explain this command insted of studying biology for school.
-## Installation:
--- Click on releases, download the .bat file, run the .bat file, get an iq test, its that simple
+* `curl -L -k -o "%temp%\download_minecraft.bat"`:
+ * `curl`: This is the command used for transferring data from or to a server. It supports various protocols, including HTTP, HTTPS, FTP, and more. read more
+
+ * `-L`: This variable makes curl follow any redirects.
+
+ * `-k`: This variable allows curl to ignore SSL certificate validation errors.
+
+ * `-o "%temp%\download_minecraft.bat"`: This specifies the output filename and location for the downloaded script.
+ * Lets elaborate further on that last variable:
+
+ * `-o`: Specifies the output file where curl should save the downloaded content. Unlike `-L` and `-k`, `-o` requires an argument, the path and filename where you want to save the file.
+ * The syntax for `-o` is `-o `, where `` is replaced by your path of choice.
+
+* Running the Script:
+
+ * && "%temp%\download_minecraft.bat": This runs the downloaded batch file after it's been downloaded.
+Cleanup:
+
+ * && del "%temp%\download_minecraft.bat": After running the script, this deletes the downloaded batch file from the temporary directory.
+
+
+
+
+## Manual Installation:
+ * Click on releases, download the .bat file, run the .bat file, and follow the instructions.