Skip to content

Commit 6ccbc78

Browse files
committed
FDPCNClient
1 parent d5d006e commit 6ccbc78

File tree

284 files changed

+400
-324
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

284 files changed

+400
-324
lines changed

README.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
# FDPClient
22
[![State-of-the-art Shitcode](https://img.shields.io/static/v1?label=State-of-the-art&message=Shitcode&color=7B5804)](https://github.com/trekhleb/state-of-the-art-shitcode)
3-
![GitHub code size in bytes](https://img.shields.io/github/languages/code-size/UnlegitMC/FDPClient)
4-
![GitHub lines of code](https://tokei.rs/b1/github/UnlegitMC/FDPClient)
5-
[![Maintainability](https://api.codeclimate.com/v1/badges/a41ae7bde63c143e426a/maintainability)](https://codeclimate.com/github/UnlegitMC/FDPClient/maintainability)
3+
![GitHub code size in bytes](https://img.shields.io/github/languages/code-size/UnlegitMinecraft/FDPClient)
4+
![GitHub lines of code](https://tokei.rs/b1/github/UnlegitMinecraft/FDPClient)
5+
[![Maintainability](https://api.codeclimate.com/v1/badges/a41ae7bde63c143e426a/maintainability)](https://codeclimate.com/github/UnlegitMinecraft/FDPClient/maintainability)
66
![Minecraft](https://img.shields.io/badge/game-Minecraft-brightgreen)
77
A free mixin-based injection hacked-client for Minecraft using Minecraft Forge based on LiquidBounce.
88

99
Website: https://FDPClient.club
10-
Latest: [github-actions](https://github.com/UnlegitMC/FDPClient/actions/workflows/build.yml?query=event%3Apush)
10+
Latest: [github-actions](https://github.com/UnlegitMinecraft/FDPClient/actions/workflows/build.yml?query=event%3Apush)
1111
Discord: https://discord.gg/55x7TaHWXG
1212

1313
## Issues
14-
If you notice any bugs or missing features, you can let us know by opening an issue [here](https://github.com/UnlegitMC/FDPClient/issues).
14+
If you notice any bugs or missing features, you can let us know by opening an issue [here](https://github.com/UnlegitMinecraft/FDPClient/issues).
1515

1616
## License
1717
This project is subject to the [GNU General Public License v3.0](LICENSE). This does only apply for source code located directly in this clean repository. During the development and compilation process, additional source code may be used to which we have obtained no rights. Such code is not covered by the GPL license.
@@ -32,7 +32,7 @@ Do the above and share your source code with everyone; just like we do.
3232

3333
## Setting up a Workspace
3434
FDPClient uses gradle, so make sure that it is installed properly. Instructions can be found on [Gradle's website](https://gradle.org/install/).
35-
1. Clone the repository using `git clone --recurse-submodules https://github.com/UnlegitMC/FDPClient.git`.
35+
1. Clone the repository using `git clone --recurse-submodules https://github.com/UnlegitMinecraft/FDPClient.git`.
3636
2. CD into the local repository folder.
3737
3. Depending on which IDE you are using execute either of the following commands:
3838
- For IntelliJ: `gradlew --debug setupDevWorkspace idea genIntellijRuns build`

src/main/java/net/ccbluex/liquidbounce/LiquidBounce.kt

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* FDPClient Hacked Client
33
* A free open source mixin-based injection hacked client for Minecraft using Minecraft Forge by LiquidBounce.
4-
* https://github.com/UnlegitMC/FDPClient/
4+
* https://github.com/UnlegitMinecraft/FDPClient/
55
*/
66
package net.ccbluex.liquidbounce
77

@@ -43,17 +43,17 @@ object LiquidBounce {
4343

4444

4545
// Client information
46-
const val CLIENT_NAME = "FDPCLIENT"
46+
const val CLIENT_NAME = "FDPCN CLIENT"
4747

4848
var CLIENTTEXT = "Waiting..."
4949
var Darkmode = true
50-
const val COLORED_NAME = "§b[§b!§7] §b§lFDPCLIENT §b» "
50+
const val COLORED_NAME = "§7[§b!§7] §b§lFDPCLIENT §b» "
5151
const val CLIENT_CREATOR = "CCBlueX & UnlegitMC"
5252
const val CLIENT_WEBSITE = "FDPClient.Club"
5353
val venti = ResourceLocation("fdpclient/imgs/GenshinImpact/venti.png")
5454
val lumine = ResourceLocation("fdpclient/imgs/GenshinImpact/lumine.png")
5555
const val MINECRAFT_VERSION = "1.8.9"
56-
const val VERSIONTYPE = "Preview"
56+
const val VERSIONTYPE = "CN Preview"
5757

5858
@JvmField
5959
val gitInfo = Properties().also {
@@ -67,11 +67,11 @@ object LiquidBounce {
6767

6868
// 自动读取客户端版本
6969
@JvmField
70-
val CLIENT_VERSION = gitInfo["git.commit.id.abbrev"]?.let { "git-$it" } ?: "unknown"
70+
val CLIENT_VERSION = gitInfo["git.commit.id.abbrev"]?.let { "cn-$it" } ?: "unknown"
7171

7272
@JvmField
7373
val CLIENT_BRANCH = (gitInfo["git.branch"] ?: "unknown").let {
74-
if (it == "main") "Main Reborn" else it
74+
if (it == "main") "CHINA" else it
7575
}
7676

7777
var isStarting = true
@@ -228,7 +228,7 @@ object LiquidBounce {
228228

229229
private fun checkUpdate() {
230230
try {
231-
val get = HttpUtils.get("https://api.github.com/repos/UnlegitMC/FDPClient/commits/${gitInfo["git.branch"]}")
231+
val get = HttpUtils.get("https://api.github.com/repos/UnlegitMinecraft/FDPClientChina/commits/${gitInfo["git.branch"]}")
232232

233233
val jsonObj = JsonParser()
234234
.parse(get).asJsonObject

src/main/java/net/ccbluex/liquidbounce/event/Event.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* FDPClient Hacked Client
33
* A free open source mixin-based injection hacked client for Minecraft using Minecraft Forge by LiquidBounce.
4-
* https://github.com/UnlegitMC/FDPClient/
4+
* https://github.com/UnlegitMinecraft/FDPClient/
55
*/
66
package net.ccbluex.liquidbounce.event
77

src/main/java/net/ccbluex/liquidbounce/event/EventManager.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* FDPClient Hacked Client
33
* A free open source mixin-based injection hacked client for Minecraft using Minecraft Forge by LiquidBounce.
4-
* https://github.com/UnlegitMC/FDPClient/
4+
* https://github.com/UnlegitMinecraft/FDPClient/
55
*/
66
package net.ccbluex.liquidbounce.event
77

src/main/java/net/ccbluex/liquidbounce/event/Events.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* FDPClient Hacked Client
33
* A free open source mixin-based injection hacked client for Minecraft using Minecraft Forge by LiquidBounce.
4-
* https://github.com/UnlegitMC/FDPClient/
4+
* https://github.com/UnlegitMinecraft/FDPClient/
55
*/
66
package net.ccbluex.liquidbounce.event
77

src/main/java/net/ccbluex/liquidbounce/event/Listenable.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* FDPClient Hacked Client
33
* A free open source mixin-based injection hacked client for Minecraft using Minecraft Forge by LiquidBounce.
4-
* https://github.com/UnlegitMC/FDPClient/
4+
* https://github.com/UnlegitMinecraft/FDPClient/
55
*/
66
package net.ccbluex.liquidbounce.event
77

src/main/java/net/ccbluex/liquidbounce/features/command/Command.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* FDPClient Hacked Client
33
* A free open source mixin-based injection hacked client for Minecraft using Minecraft Forge by LiquidBounce.
4-
* https://github.com/UnlegitMC/FDPClient/
4+
* https://github.com/UnlegitMinecraft/FDPClient/
55
*/
66
package net.ccbluex.liquidbounce.features.command
77

src/main/java/net/ccbluex/liquidbounce/features/command/CommandManager.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* FDPClient Hacked Client
33
* A free open source mixin-based injection hacked client for Minecraft using Minecraft Forge by LiquidBounce.
4-
* https://github.com/UnlegitMC/FDPClient/
4+
* https://github.com/UnlegitMinecraft/FDPClient/
55
*/
66
package net.ccbluex.liquidbounce.features.command
77

src/main/java/net/ccbluex/liquidbounce/features/command/commands/BindCommand.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* FDPClient Hacked Client
33
* A free open source mixin-based injection hacked client for Minecraft using Minecraft Forge by LiquidBounce.
4-
* https://github.com/UnlegitMC/FDPClient/
4+
* https://github.com/UnlegitMinecraft/FDPClient/
55
*/
66
package net.ccbluex.liquidbounce.features.command.commands
77

src/main/java/net/ccbluex/liquidbounce/features/command/commands/BindsCommand.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* FDPClient Hacked Client
33
* A free open source mixin-based injection hacked client for Minecraft using Minecraft Forge by LiquidBounce.
4-
* https://github.com/UnlegitMC/FDPClient/
4+
* https://github.com/UnlegitMinecraft/FDPClient/
55
*/
66
package net.ccbluex.liquidbounce.features.command.commands
77

src/main/java/net/ccbluex/liquidbounce/features/command/commands/FocusCommand.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* FDPClient Hacked Client
33
* A free open source mixin-based injection hacked client for Minecraft using Minecraft Forge by LiquidBounce.
4-
* https://github.com/UnlegitMC/FDPClient/
4+
* https://github.com/UnlegitMinecraft/FDPClient/
55
*/
66
package net.ccbluex.liquidbounce.features.command.commands
77

src/main/java/net/ccbluex/liquidbounce/features/command/commands/FriendCommand.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* FDPClient Hacked Client
33
* A free open source mixin-based injection hacked client for Minecraft using Minecraft Forge by LiquidBounce.
4-
* https://github.com/UnlegitMC/FDPClient/
4+
* https://github.com/UnlegitMinecraft/FDPClient/
55
*/
66
package net.ccbluex.liquidbounce.features.command.commands
77

src/main/java/net/ccbluex/liquidbounce/features/command/commands/HelpCommand.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* FDPClient Hacked Client
33
* A free open source mixin-based injection hacked client for Minecraft using Minecraft Forge by LiquidBounce.
4-
* https://github.com/UnlegitMC/FDPClient/
4+
* https://github.com/UnlegitMinecraft/FDPClient/
55
*/
66
package net.ccbluex.liquidbounce.features.command.commands
77

src/main/java/net/ccbluex/liquidbounce/features/command/commands/HideCommand.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* FDPClient Hacked Client
33
* A free open source mixin-based injection hacked client for Minecraft using Minecraft Forge by LiquidBounce.
4-
* https://github.com/UnlegitMC/FDPClient/
4+
* https://github.com/UnlegitMinecraft/FDPClient/
55
*/
66
package net.ccbluex.liquidbounce.features.command.commands
77

src/main/java/net/ccbluex/liquidbounce/features/command/commands/PingCommand.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* FDPClient Hacked Client
33
* A free open source mixin-based injection hacked client for Minecraft using Minecraft Forge by LiquidBounce.
4-
* https://github.com/UnlegitMC/FDPClient/
4+
* https://github.com/UnlegitMinecraft/FDPClient/
55
*/
66
package net.ccbluex.liquidbounce.features.command.commands
77

src/main/java/net/ccbluex/liquidbounce/features/command/commands/PrefixCommand.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* FDPClient Hacked Client
33
* A free open source mixin-based injection hacked client for Minecraft using Minecraft Forge by LiquidBounce.
4-
* https://github.com/UnlegitMC/FDPClient/
4+
* https://github.com/UnlegitMinecraft/FDPClient/
55
*/
66
package net.ccbluex.liquidbounce.features.command.commands
77

src/main/java/net/ccbluex/liquidbounce/features/command/commands/ReloadCommand.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* FDPClient Hacked Client
33
* A free open source mixin-based injection hacked client for Minecraft using Minecraft Forge by LiquidBounce.
4-
* https://github.com/UnlegitMC/FDPClient/
4+
* https://github.com/UnlegitMinecraft/FDPClient/
55
*/
66
package net.ccbluex.liquidbounce.features.command.commands
77

src/main/java/net/ccbluex/liquidbounce/features/command/commands/RemoteViewCommand.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* FDPClient Hacked Client
33
* A free open source mixin-based injection hacked client for Minecraft using Minecraft Forge by LiquidBounce.
4-
* https://github.com/UnlegitMC/FDPClient/
4+
* https://github.com/UnlegitMinecraft/FDPClient/
55
*/
66
package net.ccbluex.liquidbounce.features.command.commands
77

src/main/java/net/ccbluex/liquidbounce/features/command/commands/SayCommand.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* FDPClient Hacked Client
33
* A free open source mixin-based injection hacked client for Minecraft using Minecraft Forge by LiquidBounce.
4-
* https://github.com/UnlegitMC/FDPClient/
4+
* https://github.com/UnlegitMinecraft/FDPClient/
55
*/
66
package net.ccbluex.liquidbounce.features.command.commands
77

src/main/java/net/ccbluex/liquidbounce/features/command/commands/TargetCommand.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* FDPClient Hacked Client
33
* A free open source mixin-based injection hacked client for Minecraft using Minecraft Forge by LiquidBounce.
4-
* https://github.com/UnlegitMC/FDPClient/
4+
* https://github.com/UnlegitMinecraft/FDPClient/
55
*/
66
package net.ccbluex.liquidbounce.features.command.commands
77

src/main/java/net/ccbluex/liquidbounce/features/command/commands/ToggleCommand.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* FDPClient Hacked Client
33
* A free open source mixin-based injection hacked client for Minecraft using Minecraft Forge by LiquidBounce.
4-
* https://github.com/UnlegitMC/FDPClient/
4+
* https://github.com/UnlegitMinecraft/FDPClient/
55
*/
66
package net.ccbluex.liquidbounce.features.command.commands
77

src/main/java/net/ccbluex/liquidbounce/features/command/commands/TpCommand.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* FDPClient Hacked Client
33
* A free open source mixin-based injection hacked client for Minecraft using Minecraft Forge by LiquidBounce.
4-
* https://github.com/UnlegitMC/FDPClient/
4+
* https://github.com/UnlegitMinecraft/FDPClient/
55
*/
66
package net.ccbluex.liquidbounce.features.command.commands
77

src/main/java/net/ccbluex/liquidbounce/features/module/Module.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* FDPClient Hacked Client
33
* A free open source mixin-based injection hacked client for Minecraft using Minecraft Forge by LiquidBounce.
4-
* https://github.com/UnlegitMC/FDPClient/
4+
* https://github.com/UnlegitMinecraft/FDPClient/
55
*/
66
package net.ccbluex.liquidbounce.features.module
77

src/main/java/net/ccbluex/liquidbounce/features/module/ModuleCategory.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* FDPClient Hacked Client
33
* A free open source mixin-based injection hacked client for Minecraft using Minecraft Forge by LiquidBounce.
4-
* https://github.com/UnlegitMC/FDPClient/
4+
* https://github.com/UnlegitMinecraft/FDPClient/
55
*/
66
package net.ccbluex.liquidbounce.features.module
77

src/main/java/net/ccbluex/liquidbounce/features/module/ModuleCommand.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* FDPClient Hacked Client
33
* A free open source mixin-based injection hacked client for Minecraft using Minecraft Forge by LiquidBounce.
4-
* https://github.com/UnlegitMC/FDPClient/
4+
* https://github.com/UnlegitMinecraft/FDPClient/
55
*/
66
package net.ccbluex.liquidbounce.features.module
77

src/main/java/net/ccbluex/liquidbounce/features/module/ModuleInfo.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* FDPClient Hacked Client
33
* A free open source mixin-based injection hacked client for Minecraft using Minecraft Forge by LiquidBounce.
4-
* https://github.com/UnlegitMC/FDPClient/
4+
* https://github.com/UnlegitMinecraft/FDPClient/
55
*/
66
package net.ccbluex.liquidbounce.features.module
77

src/main/java/net/ccbluex/liquidbounce/features/module/ModuleManager.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* FDPClient Hacked Client
33
* A free open source mixin-based injection hacked client for Minecraft using Minecraft Forge by LiquidBounce.
4-
* https://github.com/UnlegitMC/FDPClient/
4+
* https://github.com/UnlegitMinecraft/FDPClient/
55
*/
66
package net.ccbluex.liquidbounce.features.module
77

src/main/java/net/ccbluex/liquidbounce/features/module/modules/client/HUD.kt

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* FDPClient Hacked Client
33
* A free open source mixin-based injection hacked client for Minecraft using Minecraft Forge by LiquidBounce.
4-
* https://github.com/UnlegitMC/FDPClient/
4+
* https://github.com/UnlegitMinecraft/FDPClient/
55
*/
66
package net.ccbluex.liquidbounce.features.module.modules.client
77

@@ -36,7 +36,7 @@ object HUD : Module() {
3636
private val hotbarAnimOrderValue =
3737
EaseUtils.getEnumEasingOrderList("HotbarAnimOrder").displayable { hotbarEaseValue.get() }
3838
val inventoryParticle = BoolValue("InventoryParticle", false)
39-
private val blurValue = BoolValue("Blur", false)
39+
val blurValue = BoolValue("Blur", false)
4040
val fontChatValue = BoolValue("FontChat", false)
4141
val chatRectValue = BoolValue("ChatRect", true)
4242
val chatCombineValue = BoolValue("ChatCombine", true)

src/main/java/net/ccbluex/liquidbounce/features/module/modules/client/HurtCam.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* FDPClient Hacked Client
33
* A free open source mixin-based injection hacked client for Minecraft using Minecraft Forge by LiquidBounce.
4-
* https://github.com/UnlegitMC/FDPClient/
4+
* https://github.com/UnlegitMinecraft/FDPClient/
55
*/
66
package net.ccbluex.liquidbounce.features.module.modules.client
77

src/main/java/net/ccbluex/liquidbounce/features/module/modules/client/NoAchievements.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* FDPClient Hacked Client
33
* A free open source mixin-based injection hacked client for Minecraft using Minecraft Forge by LiquidBounce.
4-
* https://github.com/UnlegitMC/FDPClient/
4+
* https://github.com/UnlegitMinecraft/FDPClient/
55
*/
66
package net.ccbluex.liquidbounce.features.module.modules.client
77

src/main/java/net/ccbluex/liquidbounce/features/module/modules/client/Rotations.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* FDPClient Hacked Client
33
* A free open source mixin-based injection hacked client for Minecraft using Minecraft Forge by LiquidBounce.
4-
* https://github.com/UnlegitMC/FDPClient/
4+
* https://github.com/UnlegitMinecraft/FDPClient/
55
*/
66
package net.ccbluex.liquidbounce.features.module.modules.client
77

src/main/java/net/ccbluex/liquidbounce/features/module/modules/client/ServerSwitcher.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* FDPClient Hacked Client
33
* A free open source mixin-based injection hacked client for Minecraft using Minecraft Forge by LiquidBounce.
4-
* https://github.com/UnlegitMC/FDPClient/
4+
* https://github.com/UnlegitMinecraft/FDPClient/
55
*/
66
package net.ccbluex.liquidbounce.features.module.modules.client
77

0 commit comments

Comments
 (0)