From 3ff4b99b0e6f1dc28d4c43229856e4a704f12fec Mon Sep 17 00:00:00 2001 From: CozyMeli-gitv2 <110065125+CozyMeli-gitv2@users.noreply.github.com> Date: Wed, 3 Aug 2022 20:31:37 -0400 Subject: [PATCH 1/9] Improved descriptions Made descriptions clearer and more concise. --- .../kotlin/com/lambda/client/module/modules/misc/AntiAFK.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 From 57fd398b17fc5ef72b0402bdffcdedbd19e57a1b Mon Sep 17 00:00:00 2001 From: CozyMeli-gitv2 <110065125+CozyMeli-gitv2@users.noreply.github.com> Date: Wed, 3 Aug 2022 20:51:44 -0400 Subject: [PATCH 2/9] Improved description Changed description to describe the function of the module and removed punctuation to fit the overall description style. --- .../com/lambda/client/module/modules/misc/AntiDisconnect.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 +} From a97e91438b7e4394711f78d4e2689c61f25f877f Mon Sep 17 00:00:00 2001 From: CozyMeli-gitv2 <110065125+CozyMeli-gitv2@users.noreply.github.com> Date: Wed, 3 Aug 2022 20:58:02 -0400 Subject: [PATCH 3/9] Improved description Changed a repeat use of the word in to within, to stay grammatically correct, and removed punctuation to stay within the style of other module's descriptions. --- .../com/lambda/client/module/modules/misc/MapDownloader.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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!") From c976f21855b82d4e9a59d81324320508b62bd064 Mon Sep 17 00:00:00 2001 From: CozyMeli-gitv2 <110065125+CozyMeli-gitv2@users.noreply.github.com> Date: Wed, 3 Aug 2022 21:00:58 -0400 Subject: [PATCH 4/9] Fixed description The description seemed to be mistakenly copied over from logout logger, which was a cause of confusion. Removed the incorrect description and wrote a new correct one. --- .../com/lambda/client/module/modules/misc/MidClickFriends.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 +} From bd83f783d081c5b8e09b589f514ea442149a8994 Mon Sep 17 00:00:00 2001 From: CozyMeli-gitv2 <110065125+CozyMeli-gitv2@users.noreply.github.com> Date: Wed, 3 Aug 2022 21:03:51 -0400 Subject: [PATCH 5/9] Improved description Changed might to attempt, as might is more informal and does not fit the use case as well. --- .../com/lambda/client/module/modules/misc/MountBypass.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 +} From 528a8032a08839e03f981e55c6d13ff080e71016 Mon Sep 17 00:00:00 2001 From: CozyMeli-gitv2 <110065125+CozyMeli-gitv2@users.noreply.github.com> Date: Wed, 3 Aug 2022 21:07:06 -0400 Subject: [PATCH 6/9] Improved description Edited description as the module only allows you to add delay, not cancel. --- .../kotlin/com/lambda/client/module/modules/misc/PingSpoof.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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") From 35656662a12dda568ca580c837510f8b20482181 Mon Sep 17 00:00:00 2001 From: CozyMeli-gitv2 <110065125+CozyMeli-gitv2@users.noreply.github.com> Date: Wed, 3 Aug 2022 21:11:07 -0400 Subject: [PATCH 7/9] Improved description Changed to be more formal and shorter --- .../com/lambda/client/module/modules/misc/SkinFlicker.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 +} From 7e6fa9d35fbb4f0c46bc46dce865182acb7c59ff Mon Sep 17 00:00:00 2001 From: CozyMeli-gitv2 <110065125+CozyMeli-gitv2@users.noreply.github.com> Date: Wed, 3 Aug 2022 21:17:35 -0400 Subject: [PATCH 8/9] Improved description Changed description to describe the function of the module and be more explanatory. --- .../com/lambda/client/module/modules/movement/EntitySpeed.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) From 329c03761f596d0873d8800783ed25296479d374 Mon Sep 17 00:00:00 2001 From: CozyMeli-gitv2 <110065125+CozyMeli-gitv2@users.noreply.github.com> Date: Wed, 3 Aug 2022 21:28:05 -0400 Subject: [PATCH 9/9] Updated description Improved description and made it more descriptive. --- .../com/lambda/client/module/modules/combat/AntiFriendHit.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 +}