-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlauncher.html
114 lines (102 loc) · 3.6 KB
/
launcher.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
<!DOCTYPE html>
<html lang="en">
<head>
<title>/mmcg/ - launchers</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<style>
table,
td,
th {
border: 1px solid #000;
text-align: left;
}
table {
border: 1px solid black;
border-collapse: collapse;
}
th,
td {
padding: 15px;
}
body {
margin: 0;
background-color: #f1f1f1;
}
.header {
grid-area: header;
background-color: #f1f1f1;
margin: auto;
width: 70%;
text-align: center;
font-size: 17px;
}
.content {
background-color: #ddd;
margin: auto;
width: 70%;
}
.footer {
background-color: #f1f1f1;
margin: auto;
width: 70%;
}
</style>
</head>
<body>
<div class="header">
<h2>Choosing the best launcher has never been easier</h2>
<p>Let's compare some of the popular ones</p>
</div>
<div class="content">
<table style="width: 100%;">
<tr>
<th>Name</th>
<th>Offline account support</th>
<th>Extra Notes</th>
</tr>
<tr>
<td><a href="https://www.curseforge.com/">CurseForge</a></td>
<td>No</td>
<td>It's botnet but has the best support for downloading Curse modpacks</td>
</tr>
<tr>
<td><a href="https://tlauncher.org/en/">TLauncher</a></td>
<td>Yes</td>
<td>Very buggy and is spyware</td>
</tr>
<tr>
<td><a href="https://multimc.org/">MultiMC</a></td>
<td>No</td>
<td>Has no curseforge support</td>
</tr>
<tr>
<td><a href="https://skmedix.pl/sklauncher">SKLauncher</a></td>
<td>No</td>
<td></td>
</tr>
<tr>
<td><a href="https://gdevs.io/">GDLauncher</a></td>
<td>No</td>
<td></td>
</tr>
<tr>
<td><a href="https://polymc.org/">PolyMC</a></td>
<td>No</td>
<td>A fork of MultiMC with CurseForge support</td>
</tr>
<tr>
<td><a href="https://github.com/fn2006/PollyMC">PollyMC</a></td>
<td>Yes</td>
<td>A fork of PolyMC with offline account support</td>
</tr>
</table>
</div>
<div class="footer">
<p>We recommend using <a href="https://github.com/fn2006/PollyMC">PollyMC</a></p>
<p>You might need the curseforge API key to download certain mods from PollyMC/PolyMC</p>
<p>$2a$10$bL4bIL5pUWqfcO7KQtnMReakwtfHbNKh6v1uTpKlzhwoueEJQnPnm</p>
<p>The API key was extracted using <a href="https://git.sakamoto.pl/domi/curseme/-/tree/meow">this</a> method, but now you can simply get it from here or any archived /mmcg/ thread</p>
</div>
</body>
</html>