File tree 3 files changed +21
-2
lines changed
src/js/net/minecraft/client/command/command
3 files changed +21
-2
lines changed Original file line number Diff line number Diff line change @@ -58,6 +58,9 @@ Click [here](https://labystudio.de/page/minecraft/) for a demo!
58
58
- Controls Screen
59
59
- Chat Input Screen
60
60
- Creative Inventory Screen
61
+ - Direct Connect Screen
62
+ - Connecting Screen
63
+ - Disconnected Screen
61
64
- Widgets
62
65
- Button
63
66
- KeyBinding
@@ -69,6 +72,15 @@ Click [here](https://labystudio.de/page/minecraft/) for a demo!
69
72
- Font rendering
70
73
- Hot-Bar
71
74
- Chat
75
+ - Debug
76
+ - Multiplayer
77
+ - Networking
78
+ - Sub-Protocols
79
+ - Handshake
80
+ - Status
81
+ - Login
82
+ - RSA Encryption
83
+ - AES Encryption
72
84
- Commands
73
85
- /help
74
86
- /time
@@ -88,8 +100,11 @@ _Note: All textures from the original game were used for the screenshots only!_
88
100
### Licensing
89
101
- The main rendering library is [ three.js] ( https://github.com/mrdoob/three.js/ )
90
102
- 64 bits number implementation by [ long.js] ( https://github.com/dcodeIO/long.js )
103
+ - AES encryption implemented by [ aes-js] ( https://github.com/ricmoo/aes-js )
104
+ - BigInt extension for RSA encryption by [ bigint-mod-arith] ( https://github.com/juanelas/bigint-mod-arith )
105
+ - Public key parser implemented by [ asn1-parser.js] ( https://git.coolaj86.com/coolaj86/asn1-parser.js )
106
+ - Minecraft chat component parser by [ mc-chat-format] ( https://github.com/janispritzkau/mc-chat-format )
91
107
- All used sound resources are taken from [ freesounds.org] ( https://freesound.org/people/C418/downloaded_sounds/?page=8#sound )
92
-
93
108
<hr >
94
109
95
110
NOT OFFICIAL MINECRAFT PRODUCT. NOT APPROVED BY OR ASSOCIATED WITH MOJANG.
Original file line number Diff line number Diff line change
1
+ /*! MIT License. Copyright 2015-2018 Richard Moore <me@ricmoo.com>. See LICENSE.txt. */
2
+ // https://github.com/ricmoo/aes-js
3
+
1
4
function checkInt ( value ) {
2
5
return ( parseInt ( value ) === value ) ;
3
6
}
Original file line number Diff line number Diff line change 1
1
import Command from "../Command.js" ;
2
+ import FontRenderer from "../../render/gui/FontRenderer.js" ;
2
3
3
4
export default class HelpCommand extends Command {
4
5
@@ -7,7 +8,7 @@ export default class HelpCommand extends Command {
7
8
}
8
9
9
10
execute ( minecraft , args ) {
10
- minecraft . addMessageToChat ( "& 2--- Showing help page ---") ;
11
+ minecraft . addMessageToChat ( FontRenderer . COLOR_PREFIX + " 2--- Showing help page ---") ;
11
12
minecraft . commandHandler . commands . forEach ( command => {
12
13
minecraft . addMessageToChat ( "/" + command . command + " " + command . usage + " - " + command . description ) ;
13
14
} ) ;
You can’t perform that action at this time.
0 commit comments