Skip to content

Commit

Permalink
v1.3.3 ForceOPBook added, ActivatedSpawnerDetecter change
Browse files Browse the repository at this point in the history
**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.
  • Loading branch information
etianl authored Dec 16, 2024
1 parent ca1d4fb commit f645da4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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<bookModes> bmode = sgSpecial.add(new EnumSetting.Builder<bookModes>()
.name("Command Mode")
.name("Book Mode")
.description("the mode")
.defaultValue(bookModes.WritableBook)
.build());
Expand Down

0 comments on commit f645da4

Please sign in to comment.