Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed multiple module descriptions #355

Merged
merged 9 commits into from
Aug 5, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import net.minecraft.network.play.client.CPacketUseEntity

object AntiFriendHit : Module(
name = "AntiFriendHit",
description = "Don't hit your friends",
description = "Prevents hitting friends",
category = Category.COMBAT
) {
init {
Expand All @@ -22,4 +22,4 @@ object AntiFriendHit : Module(
}
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ import kotlin.random.Random
*/
object AntiAFK : Module(
name = "AntiAFK",
description = "Prevents being kicked for AFK",
description = "Prevents being kicked while AFK",
category = Category.MISC
) {
private val delay by setting("Action Delay", 50, 5..100, 5, unit = " ticks")
Expand All @@ -40,7 +40,7 @@ object AntiAFK : Module(
private val turn = setting("Turn", true)
private val walk = setting("Walk", true)
private val radius by setting("Radius", 64, 8..128, 8, fineStep = 1)
private val inputTimeout by setting("Idle Timeout", 0, 0..15, 1, description = "Starts AntiAFK after being idle for longer than specific minutes, 0 to disable", unit = "m")
private val inputTimeout by setting("Idle Timeout", 0, 0..15, 1, description = "Starts AntiAFK after being idle longer than the selected time in minutes, 0 to disable", unit = "m")
private val allowBreak by setting("Allow Breaking Blocks", false, { walk.value })

private var startPos: BlockPos? = null
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import com.lambda.client.module.Module

object AntiDisconnect : Module(
name = "AntiDisconnect",
description = "Are you sure you want to disconnect?",
description = "Prevents you from accidently disconnecting",
category = Category.MISC
) {
val presses by setting("Button Presses", 3, 1..20, 1)
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ import javax.imageio.ImageIO
internal object MapDownloader : Module(
name = "MapDownloader",
category = Category.MISC,
description = "Downloads maps in item frames in your render distance to file."
description = "Downloads maps in item frames within your render distance to file"
) {

private val scale by setting("Scale", 1, 1..20, 1, description = "Higher scale results in higher storage use!")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import org.lwjgl.input.Mouse

object MidClickFriends : Module(
name = "MidClickFriends",
description = "Logs when a player leaves the game",
description = "Adds a player as a friend upon middle clicking on their hitbox",
category = Category.MISC,
showOnArray = false
) {
Expand Down Expand Up @@ -49,4 +49,4 @@ object MidClickFriends : Module(
else MessageSendHelper.sendChatMessage("Failed to find UUID of $name")
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import net.minecraft.network.play.client.CPacketUseEntity

object MountBypass : Module(
name = "MountBypass",
description = "Might allow you to mount chested animals on servers that block it",
description = "Attempts to allow you to mount chested animals on servers that block it",
category = Category.MISC
) {
init {
Expand All @@ -18,4 +18,4 @@ object MountBypass : Module(
if (it.packet.getEntityFromWorld(world) is AbstractChestHorse) it.cancel()
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import net.minecraft.network.play.server.SPacketKeepAlive

object PingSpoof : Module(
name = "PingSpoof",
description = "Cancels or adds delay to your ping packets",
description = "Adds delay to your packets",
category = Category.MISC
) {
private val delay by setting("Delay", 100, 0..2000, 25, unit = "ms")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import net.minecraft.entity.player.EnumPlayerModelParts

object SkinFlicker : Module(
name = "SkinFlicker",
description = "Toggle your skin layers rapidly for a cool skin effect",
description = "Toggles your skin layers rapidly",
category = Category.MISC
) {
private val mode by setting("Mode", FlickerMode.HORIZONTAL)
Expand Down Expand Up @@ -61,4 +61,4 @@ object SkinFlicker : Module(
EnumPlayerModelParts.LEFT_PANTS_LEG,
EnumPlayerModelParts.RIGHT_PANTS_LEG
)
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import net.minecraft.entity.passive.EntityPig

object EntitySpeed : Module(
name = "EntitySpeed",
description = "Abuse client-sided movement to shape sound barrier breaking rideables",
description = "Abuses client-sided movement to change the speed of rideable entities",
category = Category.MOVEMENT
) {
private val boatSpeed by setting("Boat Speed", 1.4f, 0.1f..10.0f, 0.05f)
Expand Down