diff --git a/src/main/kotlin/com/lambda/client/module/modules/combat/AntiFriendHit.kt b/src/main/kotlin/com/lambda/client/module/modules/combat/AntiFriendHit.kt index 59c1aef5b..4b6844fe7 100644 --- a/src/main/kotlin/com/lambda/client/module/modules/combat/AntiFriendHit.kt +++ b/src/main/kotlin/com/lambda/client/module/modules/combat/AntiFriendHit.kt @@ -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 { @@ -22,4 +22,4 @@ object AntiFriendHit : Module( } } } -} \ No newline at end of file +} diff --git a/src/main/kotlin/com/lambda/client/module/modules/misc/AntiAFK.kt b/src/main/kotlin/com/lambda/client/module/modules/misc/AntiAFK.kt index 904666272..911127dfb 100644 --- a/src/main/kotlin/com/lambda/client/module/modules/misc/AntiAFK.kt +++ b/src/main/kotlin/com/lambda/client/module/modules/misc/AntiAFK.kt @@ -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") @@ -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 diff --git a/src/main/kotlin/com/lambda/client/module/modules/misc/AntiDisconnect.kt b/src/main/kotlin/com/lambda/client/module/modules/misc/AntiDisconnect.kt index a3eafca14..4c3950b46 100644 --- a/src/main/kotlin/com/lambda/client/module/modules/misc/AntiDisconnect.kt +++ b/src/main/kotlin/com/lambda/client/module/modules/misc/AntiDisconnect.kt @@ -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) -} \ No newline at end of file +} diff --git a/src/main/kotlin/com/lambda/client/module/modules/misc/MapDownloader.kt b/src/main/kotlin/com/lambda/client/module/modules/misc/MapDownloader.kt index 8657e8ae3..55b82cb74 100644 --- a/src/main/kotlin/com/lambda/client/module/modules/misc/MapDownloader.kt +++ b/src/main/kotlin/com/lambda/client/module/modules/misc/MapDownloader.kt @@ -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!") diff --git a/src/main/kotlin/com/lambda/client/module/modules/misc/MidClickFriends.kt b/src/main/kotlin/com/lambda/client/module/modules/misc/MidClickFriends.kt index 9a8aa3dcb..5947a3e7e 100644 --- a/src/main/kotlin/com/lambda/client/module/modules/misc/MidClickFriends.kt +++ b/src/main/kotlin/com/lambda/client/module/modules/misc/MidClickFriends.kt @@ -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 ) { @@ -49,4 +49,4 @@ object MidClickFriends : Module( else MessageSendHelper.sendChatMessage("Failed to find UUID of $name") } } -} \ No newline at end of file +} diff --git a/src/main/kotlin/com/lambda/client/module/modules/misc/MountBypass.kt b/src/main/kotlin/com/lambda/client/module/modules/misc/MountBypass.kt index 878ae49e3..48417e92e 100644 --- a/src/main/kotlin/com/lambda/client/module/modules/misc/MountBypass.kt +++ b/src/main/kotlin/com/lambda/client/module/modules/misc/MountBypass.kt @@ -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 { @@ -18,4 +18,4 @@ object MountBypass : Module( if (it.packet.getEntityFromWorld(world) is AbstractChestHorse) it.cancel() } } -} \ No newline at end of file +} diff --git a/src/main/kotlin/com/lambda/client/module/modules/misc/PingSpoof.kt b/src/main/kotlin/com/lambda/client/module/modules/misc/PingSpoof.kt index ba8cfb20d..260e6d877 100644 --- a/src/main/kotlin/com/lambda/client/module/modules/misc/PingSpoof.kt +++ b/src/main/kotlin/com/lambda/client/module/modules/misc/PingSpoof.kt @@ -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") diff --git a/src/main/kotlin/com/lambda/client/module/modules/misc/SkinFlicker.kt b/src/main/kotlin/com/lambda/client/module/modules/misc/SkinFlicker.kt index 55290a7f0..abc83f1c7 100644 --- a/src/main/kotlin/com/lambda/client/module/modules/misc/SkinFlicker.kt +++ b/src/main/kotlin/com/lambda/client/module/modules/misc/SkinFlicker.kt @@ -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) @@ -61,4 +61,4 @@ object SkinFlicker : Module( EnumPlayerModelParts.LEFT_PANTS_LEG, EnumPlayerModelParts.RIGHT_PANTS_LEG ) -} \ No newline at end of file +} diff --git a/src/main/kotlin/com/lambda/client/module/modules/movement/EntitySpeed.kt b/src/main/kotlin/com/lambda/client/module/modules/movement/EntitySpeed.kt index 449814a69..cfeea6baa 100644 --- a/src/main/kotlin/com/lambda/client/module/modules/movement/EntitySpeed.kt +++ b/src/main/kotlin/com/lambda/client/module/modules/movement/EntitySpeed.kt @@ -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)