-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
1294 lines (1220 loc) · 73.8 KB
/
index.html
File metadata and controls
1294 lines (1220 loc) · 73.8 KB
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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="keywords"
content=" Latite Client, Latite, Latite Client Download, Latite Client, Motion Blur Minecraft Bedrock">
<meta name="author" content="Latite Client">
<meta property="twitter:title" content="Latite Client">
<meta property="og:title" content="Latite Client">
<meta property="og:type" content="website">
<meta name="theme-color" content="#4D57B2">
<meta property="og:description"
content="Latite Client is a legitimate DLL client For Minecraft Windows 10/11 Edition. It features a Clean UI and 30+ customizable mods, like Motion Blur, Keystrokes, Zoom, and more! Add community made plugins or make your own using our API based on JavaScript/TypeScript!">
<meta name="description"
content="Latite Client. A Legitimate Client For Minecraft Windows 10/11 Edition. It features a clean UI, and 30+ mods, like Motion Blur, Keystrokes, Zoom, and more!">
<meta property="og:image"
content="https://cdn.discordapp.com/attachments/1059373077005336656/1059373077835812944/latite-1.png?ex=65c08e8f&is=65ae198f&hm=2071a81318b56e3cf2958b8ca44ddade4599ca10117658f2192e79db8e2af404&">
<title>Latite Client</title>
<link rel="stylesheet" type="text/css" href="./sources/style.css">
<link rel="icon" type="image/png" href="sources/favicon.png">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.1/css/all.css"
integrity="sha512-FA9cIbtlP61W0PRtX36P6CGRy0vZs0C2Uw26Q1cMmj3xwhftftymr0sj8/YeezDnRwL9wtWw8ZwtCiTDXlXGjQ=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.css"
integrity="sha512-KfkfwYDsLkIlwQp6LFnl8zNdLGxu9YAA1QvwINks4PhcElQSvqcyVLLD9aMhXd13uQjoXtEKNosOWaZqXgel0g=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.css"
integrity="sha512-E+53kXnJyuZFSz75xSmTfCpUNj3gp9Bd80TeQQMTPJTVWDRHPOpEYczGwWtsZXvaiz27cqvhdH8U+g/NMYua3A=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.0/css/all.css"
integrity="sha512-M9yHeAbo9J8KSZVvOi5PEo4WrL6LWxbS+cvh6faIEPPqHQXhxilgCSJ/L2tTqRf73GmI4+tNy8OWSsQuwXc4fw=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-icons/1.9.1/font/bootstrap-icons.css"
integrity="sha512-CaTMQoJ49k4vw9XO0VpTBpmMz8XpCWP5JhGmBvuBqCOaOHWENWO1CrVl09u4yp8yBVSID6smD4+gpzDJVQOPwQ=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/3.2.0/css/font-awesome.css"
integrity="sha512-vTF66+NUFBh1RYzB09CzDYgbCeXhYpaBrydVaSAeYMjlRZ+unsPguBSioDFfMd8n2jYLijqhpJOAhEa0vdcUew=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-icons/1.10.3/font/bootstrap-icons.css"
integrity="sha512-c0+vSv9tnGS4fzwTIBFPcdCZ0QwP+aTePvZeAJkYpbj67KvQ5+VrJjDh3lil48LILJxhICQf66dQ8t/BJyOo/g=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="sources/aos_lib.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.css"
integrity="sha512-KOWhIs2d8WrPgR4lTaFgxI35LLOp5PRki/DxQvb7mlP29YZ5iJ5v8tiLWF7JLk5nDBlgPP1gHzw96cZ77oD7zQ=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@40,200,0,0" />
</head>
<body>
<div id="fadecontainer">
<div id="fade"></div>
<div id="fade2"></div>
</div>
<div class="navcontainer">
<nav>
<div class="logo">
<a href="./" class="homeicon"><img class="navlogo" src="./sources/latite.webp"></a>
</div>
<input type="checkbox" id="click">
<label for="click" class="menu-btn">
<i class="bi bi-list"></i>
</label>
<ul>
<a onclick="toggleAlertDownlaodButton(); toggleDownload();">Downloads</a>
<a href="#faq">FAQ</a>
<a onclick="toggleBeta()">Donate</a>
<a onclick="toggleLicense()">Licenses</a>
<a href="#plugins">Plugins</a>
<a href="https://discord.gg/GpV3w5tyBs" target="_blank">Discord</a>
<a href="https://github.com/LatiteClient/Latite" target="_blank">GitHub</a>
</ul>
</nav>
</div>
<header class="fscontainer">
<div class="brand">
<div class="iconcontainer">
<img class="icon" src="./sources/latite.webp">
</div>
<div class="logotextbox">
<p class="logotext">Latite Client</p>
</div>
</div>
<div class="desc">
<p class="desctext">A Legitimate DLL Client For Minecraft Windows 10/11 Edition</p>
</div>
<div class="buttonbox">
<button class="button"
onclick="toggleAlertDownlaodButton(); toggleDownload();">Download <strong>V2</strong> <i
class="fa-solid fa-download"></i></button>
<form action="https://discord.gg/GpV3w5tyBs" target="_blank">
<button class="button-discord" href='https://discord.gg/GpV3w5tyBs' target="_blank">Discord <i
class="fa-brands fa-discord"></i></button>
</form>
</div>
</header>
<!-- <div class="v2-notification">
<img class="ann" src="./sources/announcement.png">
<div class="textandclose">
<div class="notification-text">
<h2>Latite Client V2 Release</h2>
<p>Latite Client V2 has been released. It features a new UI, improved UX, new modules and a plugin
system! Go download it now!</p>
</div>
<img class="close-noti" src="./sources/close.png" onclick="closeNotification()">
</div>
</div> -->
<main class="content">
<section class="grid1container">
<p class="section-header" data-aos="fade" id="trigger" data-aos-easing="ease-in-out">What to expect in
Latite Client <span class="text-gradient">V2</span></p>
<div class="grid1">
<div class="item item1" data-aos-anchor="#trigger" data-aos="fade-down" data-aos-easing="ease-out"
data-aos-delay="200">
<div class="desc1">
<p class="h1">Clean Interface</p>
<p class="p1">Latite Client offers a clean user interface for you to browse the many mods it
features.
Navigate with ease by using the filters and search bar.</p>
</div>
<div class="client-img-container">
<img src="./sources/client2.webp" alt="Latite Client Mod Menu" loading="lazy"
class="client-img">
</div>
<div class="client-img-container-mobile">
<img src="./sources/client-mobile.webp" alt="Latite Client Mod Menu" loading="lazy"
class="client-img-mobile">
</div>
<img src="./sources/gradient2.webp" loading="lazy" class="bgradient">
</div>
<div class="item item2" data-aos="fade-down" data-aos-easing="ease-out" data-aos-delay="300"
data-aos-anchor="#trigger">
<div class="desc2">
<p class="h1">Many Features</p>
<p class="p1">Pick from 30+ mods, like Motion Blur, Zoom, Keystrokes, and much more!
Through every update we add new features to the client.</p>
</div>
<img src="./sources/modules.webp" alt="List of many Latite Client mods" loading="lazy"
class="mods-list">
</div>
<div class="item item3" data-aos="fade-down" data-aos-easing="ease-out" data-aos-delay="400"
data-aos-anchor="#trigger">
<div class="desc3">
<p class="h1">Plugins</p>
<p class="p1">Add community made plugins or make your own using our API based on
JavaScript/TypeScript!</p>
<div class="sdocs-container">
<a href="https://latitescripting.github.io" target="_blank" class="sdocs">See Docs<i
class="fa-solid fa-arrow-right"></i></a>
<a href="./plugins/" class="sdocs">Plugins<i class="fa-solid fa-arrow-right"></i></a>
</div>
</div>
<div class="plugin-img"></div>
</div>
<div class="item item4" data-aos="fade-down" data-aos-easing="ease-out" data-aos-delay="500"
data-aos-anchor="#trigger">
<img src="./sources/cus2.webp" alt="Many modifiers to cuztomize the mods" loading="lazy"
class="customize-img">
<div class="desc4">
<p class="h1">Customization</p>
<p class="p1">Customize the accent color of the client and most of the mods to your
likings! You can modify color,
position of modules, size, keybinds, font, and so much more.
</p>
</div>
</div>
</div>
</section>
<section class="interactive">
<div class="l-desc-container" data-aos="fade" data-aos-easing="ease-in-out" id="trigger2">
<p class="l-section-header">Interactive <span class="l-text-gradient">Demo</span></p>
<p class="l-desc">Test out the Latite Client V2 Mod Menu, right in your browser!</p>
</div>
<iframe src="./sources/ModMenu/index.html" class="interiframe" data-aos="fade-down"
data-aos-easing="ease-out" data-aos-delay="200" data-aos-anchor="#trigger2">
</iframe>
<p class="disclaimer" data-aos="fade-down" data-aos-easing="ease-out" data-aos-delay="300"
data-aos-anchor="#trigger2">
<span class="disclaimer-btn" onclick="toggleDisclaimer()">Disclaimer</span>
<span id="disclaimer-text" style="display: none;">
This is just a replication of Latite Client using HTML, CSS and Javascript.
Don't expect all features and functionality to be included in this demo. There are
inaccuracies compared to the actual client.
</span>
</p>
</section>
<section class="trailer-container">
<p class="section-header" data-aos="fade" data-aos-easing="ease-in-out" id="trigger3">
Latite Client <span class="text-gradient">Trailer</span>
</p>
<img src="sources/dark.svg" class="dark-circle" data-aos="fade-down" data-aos-easing="ease-out"
data-aos-delay="200" data-aos-anchor="#trigger3">
<img src="sources/light.svg" class="light-circle" data-aos="fade-down" data-aos-easing="ease-out"
data-aos-delay="200" data-aos-anchor="#trigger3">
<video controls class="trailer" data-aos="fade-down" data-aos-easing="ease-out" data-aos-delay="200"
data-aos-anchor="#trigger3">
<source src="./sources/FinalRenderLatiteClientTrailer.mp4" type="video/mp4">
</video>
<!-- <iframe class="trailer" src="https://www.youtube.com/embed/xSOfTsFKixY"
title="Latite Client V2 TRAILER (Minecraft Windows 10/11)" frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
referrerpolicy="strict-origin-when-cross-origin" data-aos="fade-down" data-aos-easing="ease-out"
data-aos-delay="200" data-aos-anchor="#trigger3" allowfullscreen></iframe> -->
</section>
<section class="plugin-main-container" id="plugins">
<p class="section-header" style="margin-top: 9rem;" data-aos="fade" data-aos-easing="ease-in-out"
id="trigger10">
Community-made <span class="text-gradient">Plugins</span>
</p>
<div class="plugin-container" data-aos="fade-down" data-aos-easing="ease-out" data-aos-delay="200"
data-aos-anchor="#trigger10" onclick="window.location.href='./plugins'" style="cursor: pointer;">
<div class="plugin-fade">
<div class="plugin-item">
<div class="plugin-text">
<div class="plugin-header">
<h2>MentionChatPing</h2>
<p>By Plextora</p>
</div>
<div class="plugin-line"></div>
<p class="plugin-description">Plays a sound when someone mentions you in chat (Suggestion
from emilyluvzzu in Latite Client Discord)</p>
</div>
<a class="plugin-link">
<button class="plugin-download">
<img src="sources/download-plugin.svg">
</button>
</a>
</div>
<div class="plugin-item">
<div class="plugin-text">
<div class="plugin-header">
<h2>KillNotif</h2>
<p>By Plextora</p>
<div class="new-plugin">NEW</div>
</div>
<div class="plugin-line"></div>
<p class="plugin-description">Plays a sound whenever you kill someone on supported servers
</p>
</div>
<a class="plugin-link">
<button class="plugin-download">
<img src="sources/download-plugin.svg">
</button>
</a>
</div>
<div class="plugin-item">
<div class="plugin-text">
<div class="plugin-header">
<h2>GalaxiteUtils</h2>
<p>By 1unar_eclipse</p>
</div>
<div class="plugin-line"></div>
<p class="plugin-description">Various modules intended for use on Galaxite</p>
</div>
<a class="plugin-link">
<button class="plugin-download">
<img src="sources/download-plugin.svg">
</button>
</a>
</div>
<div class="plugin-item">
<div class="plugin-text">
<div class="plugin-header">
<h2>ChatLogger</h2>
<p>By Plextora</p>
<div class="new-plugin">NEW</div>
</div>
<div class="plugin-line"></div>
<p class="plugin-description">Logs all chat messages to a file (adapted from Eclipse's
EventLogger)</p>
</div>
<a class="plugin-link">
<button class="plugin-download">
<img src="sources/download-plugin.svg">
</button>
</a>
</div>
</div>
<a class="viewmoreplugins" href="./plugins/">View all<i class="fa-solid fa-arrow-right"></i></a>
</div>
<div class="plugin-link-info"><a href="https://latitescripting.github.io" target="_blank">Plugin
Documentation</a> • <a href="https://github.com/LatiteScripting/Scripts" target="_blank">Plugin
Repository</a> • <a href="#plugin-faq">Plugin FAQ</a></div>
</section>
<section class="launcher-container">
<div class="l-desc-container" data-aos="fade" data-aos-easing="ease-in-out" id="trigger4">
<p class="l-section-header">Latite Client <span class="l-text-gradient">Launcher</span>
</p>
<p class="l-desc">Launch Latite Client with ease using our new and clean Launcher!
</p>
</div>
<div class="l-gr" data-aos="fade-down" data-aos-easing="ease-out" data-aos-delay="200"
data-aos-anchor="#trigger4">
<img src="./sources/launcher.png" alt="Latite Client Launcher" loading="lazy" class="launcher-img">
<img src="sources/bgradient.webp" class="bgradient2">
</div>
</section>
<section class="faq-container" id="faq">
<p class="f-section-header" data-aos="fade" data-aos-easing="ease-in-out">
Latite Client <span class="l-text-gradient">FAQ</span>
</p>
<div class="fade-faq" data-aos="fade-down" data-aos-easing="ease-out" data-aos-delay="200"
data-aos-anchor="#faq">
<div class="question">
<button class="faqbutton">
<span><strong>1. </strong>What is Latite Client?</span>
<i class="fas fa-chevron-down d-arrow"></i>
</button>
<div id="faqp">
Latite Client is a legitimate, non-cheat DLL modification for Minecraft Windows 10/11 Edition,
featuring a clean UI, 30+ customizable mods ranging from PvP utilities to world visuals, and a
powerful plugin system.
</div>
</div>
<div class="question">
<button class="faqbutton">
<span><strong>2. </strong>How do I download Latite Client?</span>
<i class="fas fa-chevron-down d-arrow"></i>
</button>
<div id="faqp">
<p>
<strong>Method 1:</strong><br>
Download the Latite Injector Installer from the top of this page or <span class="dlfaq"
onclick="toggleAlertDownlaodButton(); toggleDownload();">click here</span>, and click
the big Download button.
If your browser
blocks the download or flags it as a virus, follow the steps shown in the video below. Run
the installer and wait for it to complete. Once
installed, search for "Latite Injector" in your Start menu.
<br><br>
<strong>Method 2:</strong><br>
If Method 1 doesn't work, you can manually download the Latite DLL from the
<code>"Other Download Options"</code> dropdown in the <span class="dlfaq">download
menu</span>.
and
use
an external
injector to inject the Latite DLL instead. You can use the <a class="links"
href="https://github.com/fligger/FateInjector/" target="_blank">Fate Injector <i
class="fa-solid fa-arrow-up-right-from-square"></i></a>,
the <a class="links" href="https://github.com/ambiennt/MCBE-DLL-Injector"
target="_blank">MCBE DLL
Injector <i class="fa-solid fa-arrow-up-right-from-square"></i></a> etc. If you do
not
know how to inject the DLL using
whatever external injector you have, you can look for support in
<code>#community-support</code>.
Please do not open
a ticket for this as it is usually a simple process.
</p>
<iframe class="tutorial-embed" src="https://www.youtube.com/embed/h3v849ayuZY"
title="Latite Client Download Tutorial"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
allowfullscreen></iframe>
</div>
</div>
<div class="question">
<button class="faqbutton">
<span><strong>3. </strong>Which one do I download?</span>
<i class="fas fa-chevron-down d-arrow"></i>
</button>
<div id="faqp">
<ul class="faqlist">
<li><a href="https://github.com/Imrglop/Latite-Releases/raw/main/injector/Installer.exe"
class="links" target="_blank"><strong>Latite Injector</strong></a> - this is the
option most people choose, it's the default way to inject the client.</li>
<li><a href="https://latite-client.is-from.space/r/Latite_Minimal.exe" class="links"
target="_blank"><strong>Latite Minimal</strong></a> - This is a simpler version of
the main injector for users encountering antivirus issues or users in India as GitHub is
blocked in that country and therefore only this version of the injector will work for
them.</li>
<li><a href="https://github.com/Imrglop/Latite-Releases/releases/latest" class="links"
target="_blank"><strong>DLL Download</strong></a> - This is the client itself, only
download this if you want to use it with other injectors (no you will not be able to use
the client by opening the DLL itself)</li>
</ul>
<!-- <img src="./sources/faq-help-dl.webp" alt="Latite Client Bot Discord Message" loading="lazy"
class="faq-help-dl"> -->
</div>
</div>
<div class="question">
<button class="faqbutton">
<span><strong>4. </strong>Why does Latite's Injector get flagged as a virus?</span>
<i class="fas fa-chevron-down d-arrow"></i>
</button>
<div id="faqp">
<p>
<strong>Latite Client is not a virus!</strong> It's just a false positive due to windows and
most antiviruses not liking DLL files, as a lot of DLLs are used for malicious purposes.
However, the Latite DLL is completely safe and will only affect Minecraft. <span
id="explanation" onclick="toggleExplanation()">Want a bigger explaination?</span>
<p id="explanation-text" style="display: none;">
Basically, every Bedrock client that isn't a resource pack uses a DLL file. DLL files have a
lot of use cases over the history of Windows, but for purposes of Minecraft clients, they
can hook into a running program (such as Minecraft) and add or change features. DLL files
are not just used for Bedrock modding. For example, another game that uses DLLs for modding
is Beat Saber. The process is a bit different - Beat Saber uses a standardized mod loader,
while most clients are only built to accommodate themselves - but the same file type and
idea are used.
<br><br>
However, because of the ability for DLL files to mess with the program, it's easy to realize
that the changes in the program could be malicious. In fact, malicious DLL injection used to
be a form of malware. Key word: used to. Most malware makers likely realized that requiring
the target to have a preexisting program limited the scope of their Shenanigans™️ too much,
and they primarily changed gears to stuff like background tasks or executables. However,
since it's obviously bad for antiviruses to detect fewer viruses, antiviruses kept in the
ability to detect these.
<br><br>
Antiviruses generally operate on pattern recognition. If the file in question isn't on some
sort of blacklist or whitelist, generally, this is good enough for them to do their job. But
in some edge cases, this pattern recognition can go wrong. Bedrock clients are one of these
edge cases. A program that opens another program and immediately injects an internet-sourced
DLL into it sounds really sketchy... until you consider that the program being injected with
a DLL is Minecraft Bedrock, which is a UWP program, and the DLL is just a mod. UWPs have the
advantage of a LOT of limitations on system access, and as a result, you can't inject them
with anything that can be a meaningful virus. Worst-case scenario is your computer freezing
lol.
<br><br>
So why is Latite's injector - and only Latite's injector - detected? It's primarily because
it's written in C#. C# as a language is very easy to reverse engineer and decompile, and I
wouldn't be shocked if antiviruses have a partial decompiler to check programs written in
it. Onix's launcher, as another example, is written in C++, which is a lot harder to do this
to, so it's detected less by default. Another reason is a whitelist system in place by
Microsoft, but that's a lot easier to understand; IIRC the stable injector has been
submitted for approval but the process is very slow. Onix's launcher has been submitted for
this, so on top of being harder for antiviruses to crack, it also has Windows saying "yeah,
this is fine." But back to Latite, since it's easy to see "under the hood" in C#, that means
antiviruses see that "program opens another program and puts a DLL from the internet into
it" in a lot of clarity, and immediately slap it with a Trojan label. But for the reasons
said above, this is completely fine in this case. Pattern recognition can and will go wrong
at some point. Something something Among Us fire alarms.
<br><br>
I should add: all of this is SPECIFICALLY on the injector. I can say with certainty that,
after injection, the DLL itself has no reason to send or receive anything to or from the
internet. You can use another DLL injector if you want to; plenty of those don't have issues
like Latite's has. In fact, if I remember right, you could probably use Onix's injector and
have the same one-click convenience factor after a bit of setup. Don't quote me on that
though.
<br><br>
And all of that is assuming the file is malicious to begin with. I've been using Latite for
probably over a year now over 2 computers, and I haven't had any issues. That said, I'm just
some computer-obsessed trans girl on the internet, and you are completely free to disregard
anything you read here. If you don't trust it, don't run it, internet safety 101.
<br><br>
<i>(Thanks Eclipse [1unar_eclipse] for the in-depth explanation)</i>
<br>
</p>
<br>
<strong>What you can do about it:</strong>
<ul class="faqlist">
<li>Exclude Latite from your antivirus</li>
<li>Download the Legacy Latite Injector or Latite Minimal and use it.</li>
<li>Use a different injector and inject Latite manually</li>
<li>View the injector's source code at <a class="links"
href="https://github.com/Plextora/LatiteInjector" target="_blank">here <i
class="fa-solid fa-arrow-up-right-from-square"></i></a> (and even build it
yourself)
</li>
</ul>
</p>
<iframe class="tutorial-embed" src="https://www.youtube.com/embed/h3v849ayuZY"
title="Latite Client Download Tutorial"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
allowfullscreen>
</iframe>
</div>
</div>
<div class="question">
<button class="faqbutton">
<span><strong>5. </strong>Latite Client isn't working/injecting!</span>
<i class="fas fa-chevron-down d-arrow"></i>
</button>
<div id="faqp">
If you're having problems injecting Latite Client, try installing
<a href="https://aka.ms/vs/17/release/vc_redist.x64.exe" class="links" target="_blank">Microsoft
Visual C++ Redistributable <i class="fa-solid fa-arrow-up-right-from-square"></i></a>.
If it's still not working, try using Latite Minimal or try using an external injector with the
Latite DLL (refer to <strong>Method 2</strong> in <strong>FAQ #2</strong>). This problem could
also be caused by your antivirus, like Windows
Security.
<br><br>
COMMON CAUSES:
<ul class="faqlist">
<li>
You're on the x86/32 bit version of Minecraft, in this case if you attempt
to inject Latite it will do nothing. You can solve this issue by downloading
the 64 bit version of the game.
</li>
<li>
The game version you're on is outdated/unsupported (see supported versions in
<strong>FAQ #9</strong>).
</li>
<!-- <li>
You selected the wrong version of the client in the injector
<strong>(THIS IS NOT A VERSION SWITCHER, PLEASE SELECT THE VERSION YOUR GAME IS
ON)</strong>,
which in that case an error message will be shown (if you're on an outdated
version of the injector and inject the wrong version the game will just crash).
</li> -->
<br>
</ul>
You can also try resetting your config (refer to <strong>FAQ #7</strong>).
</div>
</div>
<div class="question">
<button class="faqbutton">
<span><strong>6. </strong>My game crashed after I injected Latite, what do I do?</span>
<i class="fas fa-chevron-down d-arrow"></i>
</button>
<div id="faqp">
First, check if Latite Client supports your Minecraft version <strong>(FAQ #9)</strong>, if it
isn't, and
your current Minecraft version isn't supported by Latite, you can upgrade/downgrade your game
via <a href="https://github.com/MCMrARM/mc-w10-version-launcher" class="links"
target="_blank">MCMrARM's Version Switcher <i
class="fa-solid fa-arrow-up-right-from-square"></i></a>,
<a href="https://github.com/JiayiSoftware/JiayiLauncher" class="links" target="_blank">Jiayi
Launcher <i class="fa-solid fa-arrow-up-right-from-square"></i></a>,
<a href="https://bedrocklauncher.github.io/" class="links" target="_blank">Bedrock
Launcher <i class="fa-solid fa-arrow-up-right-from-square"></i></a> or others.
<br><br>
If your version of Minecraft is currently supported by Latite, just select your current
Minecraft version
under the "LAUNCH" button.
<br><br>
If your Minecraft version is the same as the version you selected and it still crashes, please
open a ticket and a staff member will assist you shortly.
<br><br>
You can also try resetting your config (refer to <strong>FAQ #7</strong>).
</div>
</div>
<div class="question">
<button class="faqbutton">
<span><strong>7. </strong>How can I reset my config?</span>
<i class="fas fa-chevron-down d-arrow"></i>
</button>
<div id="faqp">
To reset your config, do Windows Key + R and paste the following:
<br>
<code>%localappdata%\Packages\Microsoft.MinecraftUWP_8wekyb3d8bbwe\RoamingState\LatiteRecode\Configs</code>
<br><br>
Then find and delete the file named "config.json".
<br><br>
Restart Minecraft afterwards.
</div>
</div>
<div class="question">
<button class="faqbutton">
<span><strong>8. </strong>Does Latite Client support my device?</span>
<i class="fas fa-chevron-down d-arrow"></i>
</button>
<div id="faqp">
<p>
<strong>
Latite Client ONLY supports 64-bit Windows 10/11 Operating Systems with x64-based
processors.
</strong>
You can check your device information by going into Windows Settings > System > About. Now
look for
"System type"
<br><br>
If it says:
<ul class="faqlist">
<li>"64-bit operating system, x64-based processor" you will be able to use Latite Client
</li>
<li>"32-bit operating system, x64-based processor" you must install a 64-bit Windows OS
in order to use Latite Client.
</li>
<li>"32-bit operating system, x86-based processor" you will not be able to use Latite
Client, unfortunately.</li>
</ul>
<br>
<strong>Keep in mind that Latite Client will not work on x86 builds of Minecraft!</strong>
<br><br>
<div class="faqtestbutton" onclick="toggleAlertButton()">Test if i'm compatible</div>
</p>
</div>
</div>
<div class="question">
<button class="faqbutton">
<span><strong>9. </strong>What versions of Minecraft does Latite Client support?</span>
<i class="fas fa-chevron-down d-arrow"></i>
</button>
<div id="faqp">
<!-- The latest version of Latite Client currently supports:
<ul class="faqlist">
<li>1.21.94</li>
<li>1.21.93</li>
<li>1.21.92</li> -->
Please join our Discord Server for more updates: latite.net/discord
</ul>
</div>
</div>
<div class="question">
<button class="faqbutton">
<span><strong>10. </strong>I'm on an unsupported version of Minecraft, how do I switch?</span>
<i class="fas fa-chevron-down d-arrow"></i>
</button>
<div id="faqp">
You can update/downgrade your Minecraft version by using version switchers, such as
<a href="https://github.com/MCMrARM/mc-w10-version-launcher" class="links"
target="_blank">MCMrARM's Version Switcher <i
class="fa-solid fa-arrow-up-right-from-square"></i></a>,
<a href="https://github.com/JiayiSoftware/JiayiLauncher" class="links" target="_blank">Jiayi
Launcher <i class="fa-solid fa-arrow-up-right-from-square"></i></a>,
<a href="https://bedrocklauncher.github.io/" class="links" target="_blank">Bedrock
Launcher <i class="fa-solid fa-arrow-up-right-from-square"></i></a> and others.
<br><br>
Keep in mind:
<ul class="faqlist">
<li>This will NOT work if you did not buy Minecraft legitimately.</li>
<li>Developer mode has to be enabled on your windows computer for most of these applications
to work.</li>
<li>Your Minecraft data (worlds, resource packs) may be lost when installing these apps, so
make sure backup your data before downgrading/updating!</li>
</ul>
</div>
</div>
<div class="question">
<button class="faqbutton">
<span><strong>11. </strong>What is Latite Client Beta and how do I gain access?</span>
<i class="fas fa-chevron-down d-arrow"></i>
</button>
<div id="faqp">
<!-- If you boost our discord server or subscribe to <a href="https://www.patreon.com/latiteclient"
class="links">our patreon <i class="fa-solid fa-arrow-up-right-from-square"></i></a>,
you get access to all beta channels (<code>#beta-announcement</code>,
<code>#beta-releases</code>, <code>#beta-chat</code> and more). <code>#beta-releases</code>
contains DLLs for Latite
Client not released to the public yet. For example, it could contain a version
of Latite Client that has some features that aren't released to the public yet. -->
Latite Client Beta are early versions of the client to test new features. These versions may be
unstable
and bugs can be encountered.
<br><br>
Beta versions are now available to everyone since the client's transition to FOSS, and can
now be accessed in <code>#beta-releases</code> in our Discord Server.
<br><br>
Boosting our discord server or subscribing to <a href="https://www.patreon.com/latiteclient"
class="links">our patreon <i class="fa-solid fa-arrow-up-right-from-square"></i></a>,
will give you access to the beta chat. Let us know that you are testing beta releases and want
to join beta chat. You can do this by making a ticket at <code>#open-a-ticket</code> or just
pinging a staff member.
</div>
</div>
<div class="question">
<button class="faqbutton">
<span><strong>12. </strong>How do I disable Windows Security?</span>
<i class="fas fa-chevron-down d-arrow"></i>
</button>
<div id="faqp">
Try following the steps in this article from Microsoft:
<a href="https://support.microsoft.com/en-us/windows/turn-off-defender-antivirus-protection-in-windows-security-99e6004f-c54c-8509-773c-a4d776b77960"
class="links">https://support.microsoft.com/en-us/windows/turn-off-defender-antivirus-protection-in-windows-security-99e6004f-c54c-8509-773c-a4d776b77960</a>
</div>
</div>
<div class="question">
<button class="faqbutton atlasfaq">
<span><strong>13. </strong>Why Latite Client doesn't support mobile devices</span>
<i class="fas fa-chevron-down d-arrow"></i>
</button>
<div id="faqp">
Latite Client will <strong>NEVER</strong> have mobile support.
"but why!!! I want a client!!!!!!!!11111111111111" you may ask, here's why:
<ul class="faqlist">
<li>A full rewrite would be needed to port Latite Client to mobile.</li>
<li>
So many phones/tablets come in vastly different sizes, specs, etc. A ton of work
would be required to make sure most devices have a seamless experience.
</li>
<li>
iOS wouldn't be supported at all, I'm pretty sure you need a MacBook to develop iOS
apps (thanks Apple) and we (the devs) don't have those.
</li>
<li>
DLL injection isn't really a thing on mobile devices, so we'd need an entirely
different strategy for mobile, further complicating the project.
</li>
<li>
2 entire different codebases would be needed for Android and Windows, making things an
absolute hell to manage.
</li>
</ul>
<br>
<strong>Update: Atlas Client, made by the same developer is in the works for Android
Devices.</strong>
<br><br>
<div class="atlas-container" id="atlas">
<div class="atlasbrand">
<img src="sources/atlas.webp" class="atlas-logo">
<div class="brandtext">
<h1>Atlas Client</h1>
<h3>Legitimate Client for MCPE</h3>
</div>
</div>
<a href="https://atlasclient.net/" target="_blank" class="atlaslink">
<button class="atlasdownload">
DOWNLOAD FOR <i class="fa-brands fa-android"></i>
</button>
</a>
</div>
</div>
</div>
<div class="question">
<button class="faqbutton">
<span><strong>14. </strong>What mods does Latite Client feature?</span>
<i class="fas fa-chevron-down d-arrow"></i>
</button>
<div id="faqp">
Feature List:
<br>
<ul class="faqlist">
<li>Armor HUD</li>
<li>Auto GG</li>
<li>Behind You (Snaplook)</li>
<li>Block Game (Fun)</li>
<li>Block Overlay</li>
<li>Bow Indicator</li>
<li>Break Indicator</li>
<li>CPS Counter</li>
<li>Chunk Borders</li>
<li>Cinematic Camera</li>
<li>Clock</li>
<li>Combo Counter</li>
<li>Command Shortcuts</li>
<li>Custom Coordinates</li>
<li>Environment Changer</li>
<li>FPS Counter</li>
<li>Frame Time Display</li>
<li>Freelook</li>
<li>Fullbright</li>
<li>GUI Scale Changer</li>
<li>Health Warning</li>
<li>Hitboxes</li>
<li>Hurt Color</li>
<li>Item Counter</li>
<li>Java Debug Info</li>
<li>Keystrokes</li>
<li>Motion Blur</li>
<li>Movable Bossbar</li>
<li>Movable Coordinates</li>
<li>Movable Paperdoll</li>
<li>Movable Scoreboard</li>
<li>Nickname</li>
<li>No Hurt Cam</li>
<li>Ping Display</li>
<li>Player List</li>
<li>Position Display (displays your coordinates)</li>
<li>Reach Display</li>
<li>Server Display (displays the IP address of the server you're on)</li>
<li>Speed display</li>
<li>Text/Command Hotkey</li>
<li>Third Person Nametag</li>
<li>Toggle Sprint/Sneak</li>
<li>Zoom</li>
</ul>
<br>
42 Total Core Mods, and many more commmunity-made plugins!
</div>
</div>
<div class="question">
<button class="faqbutton">
<span><strong>15. </strong>Will I get banned on servers for using this client?</span>
<i class="fas fa-chevron-down d-arrow"></i>
</button>
<div id="faqp">
That depends on individual server rules. Most servers would not ban you for using Latite, but it
is recommended to read the server rules just to be safe.
<br><br>
(It is safe to use the client on all featured servers and most popular non-featured servers such
as nethergames)
</div>
</div>
<div class="question">
<button class="faqbutton">
<span><strong>16. </strong>Why can't I use certain features on some servers?</span>
<i class="fas fa-chevron-down d-arrow"></i>
</button>
<div id="faqp">
Some servers have restrictions on which modules can or cannot be allowed to be
used on their server. Latite has a feature in which it automatically prevents
such blocked features from being enabled whenever a user is on one of these
servers. However, as there are thousands of different bedrock edition servers,
Latite cannot keep track of which modules are or are not allowed to be used on
each and every single server, therefore Latite will only block modules on certain
major bedrock edition servers.
<br><br>
<strong>HIVE</strong>
<ul class="faqlist">
<li>Freelook</li>
<li>NoHurtCam</li>
</ul>
<br>
<strong>GALAXITE</strong>
<ul class="faqlist">
<li>Freelook</li>
<li>Toggle Sprint</li>
</ul>
<br>
<strong>NETHERGAMES</strong>
<ul class="faqlist">
<li>Toggle Sprint</li>
<li>Bow Indicator</li>
</ul>
<br>
No modules are blocked on any servers that are not included
in this list. Please study the rules of that server before
proceeding to use the client. Latite will not be held responsible
for any repercussions as a result of using a prohibited module.
Use at your own risk.
</div>
</div>
<div class="question">
<button class="faqbutton">
<span><strong>17. </strong>How do I open the Mod Menu?</span>
<i class="fas fa-chevron-down d-arrow"></i>
</button>
<div id="faqp">
You open the Mod Menu by pressing M and clicking the "Mod Settings" button.
</div>
</div>
<div class="question">
<button class="faqbutton">
<span><strong>18. </strong>How do I change mod positions?</span>
<i class="fas fa-chevron-down d-arrow"></i>
</button>
<div id="faqp">
You can change mod positions by pressing M, or by clicking the
<img src="./sources/ModMenu/move.webp" alt="EditHUD" width="20px"> icon in the Mod Menu.
</div>
</div>
<div class="question">
<button class="faqbutton">
<span><strong>19. </strong>I found a bug, where do I report it?</span>
<i class="fas fa-chevron-down d-arrow"></i>
</button>
<div id="faqp">
You can report all bugs through the
<code><img src="./sources/forum.webp" alt="EditHUD" width="17px"> report-bugs</code>
forum channel in our discord server.
</div>
</div>
<div class="question">
<button class="faqbutton">
<span><strong>20. </strong>Where do I suggest new features for the client or discord?</span>
<i class="fas fa-chevron-down d-arrow"></i>
</button>
<div id="faqp">
You can post all suggestions in the
<code><img src="./sources/forum.webp" alt="EditHUD" width="17px"> suggestions</code>
forum channel in our discord server.
</div>
</div>
<div class="question">
<button class="faqbutton">
<span><strong>21. </strong>I have an issue, where do I get help?</span>
<i class="fas fa-chevron-down d-arrow"></i>
</button>
<div id="faqp">
If your the solution to your problem isn't found in the FAQ, you can
ask for help in <code>#community-support</code> or contact staff by opening a ticket in
<code>#open-a-ticket</code>.
</div>
</div>
<div class="question">
<button class="faqbutton">
<span><strong>22. </strong>What are the YouTube Role Requirements?</span>
<i class="fas fa-chevron-down d-arrow"></i>
</button>
<div id="faqp">
YouTube Role Requirements:
<br>
<ul class="faqlist">
<li>
Has over 5k subscribers + makes a video about Latite
</li>
<li>
Makes videos about Minecraft BE
</li>
<li>
Active on YouTube, gets a considerable amount of views
</li>
</ul>
<br>
Please make a ticket at <code>#open-a-ticket</code> in our discord server to chat with us in
order to apply for the YouTuber role.
</div>
</div>
<div class="question">
<button class="faqbutton">
<span><strong>23. </strong>Latite Client GitHub Links</span>
<i class="fas fa-chevron-down d-arrow"></i>
</button>
<div id="faqp">
Here are all the GitHub Links:
<ul class="faqlist">
<li><a href="https://github.com/LatiteClient/Latite" class="links" target="_blank">Latite
Client V2 Repository <i class="fa-solid fa-arrow-up-right-from-square"></i></a>
</li>
<li><a href="https://github.com/Plextora/LatiteInjector" class="links"
target="_blank">Latite Client Launcher <i
class="fa-solid fa-arrow-up-right-from-square"></i></a></li>
<li><a href="https://github.com/LatiteScripting" class="links" target="_blank">Latite Client
Plugins Repositories <i class="fa-solid fa-arrow-up-right-from-square"></i></a>
</li>
<li><a href="https://github.com/Imrglop/Latite-Releases" class="links"
target="_blank">Latite Client Releases <i
class="fa-solid fa-arrow-up-right-from-square"></i></a></li>
<li><a href="https://github.com/LatiteClient/latiteclient.github.io" class="links"
target="_blank">Latite Client Website <i
class="fa-solid fa-arrow-up-right-from-square"></i></a></li>
</ul>
</div>
</div>
<div class="question">
<button class="faqbutton">
<span><strong>23. </strong>Latite Social Media</span>
<i class="fas fa-chevron-down d-arrow"></i>
</button>
<div id="faqp">
Here are all the Latite Social Medias:
<ul class="faqlist">
<li>X (formerly Twitter): <a href="https://x.com/@LatiteClient" class="links"
target="_blank">@Latite
Client</a></li>
<li>Discord: <a href="https://latite.net/discord" class="links"
target="_blank">latite.net/discord</a>
</li>
<li>YouTube: <a href="https://www.youtube.com/@LatiteClientMC" class="links"
target="_blank">@LatiteClientMC</a></li>
</ul>
<br>
Any accounts not including in this list claiming to be Latite Client are
impersonating/unofficial.
</div>
</div>
<h1 class="plugin-faq-header" id="plugin-faq">Latite Plugins FAQ</h1>
<div class="question">
<button class="faqbutton">
<span><strong>1. </strong>What are Latite Plugins?</span>
<i class="fas fa-chevron-down d-arrow"></i>
</button>
<div id="faqp">
Latite Client plugins are community-made modifications that can be
installed by anyone to further enhance your Latite Client Minecraft experience! They are
basically like scripts! They will have restrictions, which prevents cheating.
</div>
</div>