From f645da40bccb283bdb6c52dfbba7ef960c413c03 Mon Sep 17 00:00:00 2001 From: etianl <115842502+etianl@users.noreply.github.com> Date: Mon, 16 Dec 2024 01:25:44 -0800 Subject: [PATCH] v1.3.3 ForceOPBook added, ActivatedSpawnerDetecter change **ActivatedSpawnerDetector update:** - Added an option enabled by default that will reduce spam about checking storage around the spawners. If there is no chests within 14 blocks of the spawner (the distance to trigger it) then it will not tell you to check storage. **ForceOPBook Module added!** - Creates a blank book and quill where the first page is a click event that you can load with any command. The book looks completely blank and is not very suspicious so just ask the target operator for an autograph. The book menu will not let them write, it will close and the command will have executed. - The book can only execute commands that are available to the victim, so targeting an operator is necessary - If you want to you can choose the text in the book and the author/title. - In server versions less than Minecraft version 1.21.2 you cannot put clickEvents on a book and quill so in those versions you have to use the WrittenBook mode which creates a written book item that has been signed. Those books would require more social engineering to use, you'd have to convince the operator to click on the first page. --- src/main/java/pwn/noobs/trouserstreak/modules/ForceOPBook.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/pwn/noobs/trouserstreak/modules/ForceOPBook.java b/src/main/java/pwn/noobs/trouserstreak/modules/ForceOPBook.java index 30847aca..66093ea3 100644 --- a/src/main/java/pwn/noobs/trouserstreak/modules/ForceOPBook.java +++ b/src/main/java/pwn/noobs/trouserstreak/modules/ForceOPBook.java @@ -20,7 +20,7 @@ public class ForceOPBook extends Module { private final SettingGroup sgGeneral = settings.getDefaultGroup(); private final SettingGroup sgSpecial = settings.createGroup("!!!You need to use WrittenBook mode on MC servers with versions less than 1.21.2!!!"); private final Setting bmode = sgSpecial.add(new EnumSetting.Builder() - .name("Command Mode") + .name("Book Mode") .description("the mode") .defaultValue(bookModes.WritableBook) .build());