Skip to content

Releases: Earthcomputer/clientcommands

Version 2.8.19 for Minecraft 1.20.5 - 1.20.6

19 May 13:25
f556ba1
Compare
Choose a tag to compare
  • Allowed level ranges in /cenchant.
    • For example, /cenchant book with efficiency 3.. will enchant a book with at least efficiency 3.
  • Allowed option for enchantments to be matched in the order they are specified in /cenchant.
    • Add ordered to the end of the command.
    • If you don't want additional enchantments on top of the ones you specified, use ordered exactly.
  • /cfindblock no longer waits 5 seconds for blocked shulker boxes.
  • Made {min,max}Enchant{Levels,Bookshelves} configs temporary.
  • Recursive /caliases no longer crash the client when executed.
  • The client no longer hangs if you use a regex bomb in /csignsearch.
  • /cgive no longer shows the wrong item stack count if you try to give yourself items above the max stack count.

Version 2.8.18 for Minecraft 1.20.5 - 1.20.6

05 May 01:07
5cfbe22
Compare
Choose a tag to compare
  • Fixed incompatibility with ViaFabricPlus.
    • The fix will hopefully work once the next version of ViaFabricPlus is released. Accordingly I have marked VFP 3.2.0 and earlier as incompatible.

Version 2.8.17 for Minecraft 1.20.5 - 1.20.6

29 Apr 17:43
2f35bcf
Compare
Choose a tag to compare
  • Declared compatibility with 1.20.6.
  • Fixed issue with pasting client command truncating at 256 chars.

Version 2.8.16 for Minecraft 1.20.5

24 Apr 17:51
433a0ba
Compare
Choose a tag to compare

Version 2.8.15 for Minecraft 1.20.5

23 Apr 20:13
cfcbccf
Compare
Choose a tag to compare
  • Updated to 1.20.5
    • All commands that take an item or item predicate have been updated to use the new item component syntax (see here and here).
    • The /clisten command now takes namespaced packet IDs rather than Mojmap class names.

Version 2.8.14 for Minecraft 1.20.3 - 1.20.4

22 Apr 12:49
2469aa0
Compare
Choose a tag to compare
  • Renamed /citemgroup to /ccreativetab.
  • Fixed crash in chorus manipulation.
  • Declared incompatibility with SeedCrackerX.
    • It was already incompatible, but undeclared.
  • Fixed handling of ViaFabricPlus on versions older than 1.7

Version 2.8.13 for Minecraft 1.20.3 - 1.20.4

04 Apr 17:33
347be7a
Compare
Choose a tag to compare
  • Added config options for the enchantment cracker, changeable via /cconfig clientcommands set <option> <value>:
    • minEnchantBookshelves
    • maxEnchantBookshelves
    • minEnchantLevels
    • maxEnchantLevels

Version 2.8.12 for Minecraft 1.20.3 - 1.20.4

02 Apr 11:34
8ebb89f
Compare
Choose a tag to compare
  • Fixed crash when typing "/" followed by a space in chat

Version 2.8.11 for Minecraft 1.20.3 - 1.20.4

18 Mar 00:16
2bd2d6c
Compare
Choose a tag to compare
  • Updated ViaFabricPlus compatibility

Version 2.8.10 for Minecraft 1.20.3 - 1.20.4

07 Mar 21:48
406f308
Compare
Choose a tag to compare
  • Added /cghostblock fill ... replace to replace a certain type of block with another type of block on the client.
  • Added /cplugins command to list the plugins on a Spigot/Paper server.
  • Added /clisten command for packet logging.
    • To listen for packets, add its Mojmap class name via /clisten add <className>. You can remove it later via /clisten remove <className>.
    • You can view packets in either reflection mode (the default) or byte buf mode. To switch between them, use /cconfig clientcommands packetDumpMethod set <newMode>.
      • In reflection mode, you can view the packet's field names and values.
      • In byte buf mode, you can view the values that are actually written on the network, but there are no field names.
  • Added /cgamemode to query the game mode of a player.
  • Rethrow items in /cenchant and /ccrackrng if the server rejects item throws.
    • This should fix some issues people have been having with /cenchant especially since 1.17.
  • Added a config option for the item throw rate in /cenchant and /ccrackrng.
    • You can set it via /cconfig clientcommands itemThrowsPerTick set <newRate>.
    • You can set it to fractional values to spread item throws over multiple ticks.
    • For example, a value of 5 will throw 5 items per tick, while a value of 0.2 will throw one item every 5 ticks.
  • Made the enchantment cracker search multithreaded, and async from the main thread so it no longer freezes the game even for very high search limits.
    • Increased the default search limit (item throw limit) from 32 stacks to 256 stacks.
    • The enchantment cracker is now cancelable like other long-running tasks in clientcommands. This includes both searching and the long-running item throw task.
  • Rewrote /ccrackrng.
    • It can now crack the seed by throwing only 10 items per attempt, rather than 20.
    • It should be 100% reliable and only require a single attempt, rather than often failing.
    • It now keeps your yaw when you run the command, so no more getting disoriented by it.
      • You still need to face straight down while it's running, but you can spin around while facing down all you want.
  • Increased the max length of the chat field while typing a clientcommands command.
  • Updated ViaFabricPlus integration to work with the latest VFP.

Thanks to everyone who helped with the brute force seed search for the new /ccrackrng
image