You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
overrideval sorter by c.setting("Sorter", SortMode.Closest, "The order in which breaks are performed") { vis() && page ==Page.General }
38
-
overrideval reBreak by c.setting("ReBreak", true, "Re-breaks blocks after they've been broken once") { vis() && page ==Page.General }
39
40
overrideval breakThreshold by c.setting("Break Threshold", 0.70f, 0.1f..1.0f, 0.01f, "The break amount at which the block is considered broken") { vis() && page ==Page.General }
41
+
overrideval reBreak by c.setting("ReBreak", true, "Re-breaks blocks after they've been broken once") { vis() && page ==Page.General }
42
+
43
+
// Double break
40
44
overrideval doubleBreak by c.setting("Double Break", true, "Allows breaking two blocks at once") { vis() && page ==Page.General }
41
45
overrideval unsafeCancels by c.setting("Unsafe Cancels", true, "Allows cancelling block breaking even if the server might continue breaking sever side, potentially causing unexpected state changes") { vis() && page ==Page.General }
46
+
47
+
// Fixes / Delays
42
48
overrideval fudgeFactor by c.setting("Fudge Factor", 1, 0..5, 1, "The amount of ticks to give double, aka secondary breaks extra for the server to recognise the break") { vis() && page ==Page.General }
43
49
// override val desyncFix by c.setting("Desync Fix", false, "Predicts if the players breaking will be slowed next tick as block break packets are processed using the players next position") { vis() && page == Page.General }
44
50
overrideval breakDelay by c.setting("Break Delay", 0, 0..6, 1, "The delay between breaking blocks", " ticks") { vis() && page ==Page.General }
51
+
52
+
// Timing
45
53
overrideval breakStageMask by c.setting("Break Stage Mask", setOf(TickEvent.Input.Post, TickEvent.Player.Post), "The sub-tick timing at which break actions can be performed") { vis() && page ==Page.General }
54
+
55
+
// Swing
46
56
overrideval swing by c.setting("Swing Mode", SwingMode.Constant, "The times at which to swing the players hand") { vis() && page ==Page.General }
47
57
overrideval swingType by c.setting("Break Swing Type", BuildConfig.SwingType.Vanilla, "The style of swing") { vis() && page ==Page.General&& swing !=SwingMode.None }
58
+
59
+
// Rotate
48
60
overrideval rotateForBreak by c.setting("Rotate For Break", false, "Rotate towards block while breaking") { vis() && page ==Page.General }
49
-
overrideval ignoredBlocks by c.setting("Ignored Blocks", allSigns, "Blocks that wont be broken") { vis() && page ==Page.General }
61
+
62
+
// Pending / Post
50
63
overrideval breakConfirmation by c.setting("Break Confirmation", BreakConfirmationMode.BreakThenAwait, "The style of confirmation used when breaking") { vis() && page ==Page.General }
51
-
overrideval maxPendingBreaks by c.setting("Max Pending Breaks", 15, 1..30, 1, "The maximum amount of pending breaks") { vis() && page ==Page.General }
52
64
overrideval breaksPerTick by c.setting("Breaks Per Tick", 5, 1..30, 1, "Maximum instant block breaks per tick") { vis() && page ==Page.General }
53
-
overrideval suitableToolsOnly by c.setting("Suitable Tools Only", false, "Places a restriction to only use tools suitable for the given block") { vis() && page ==Page.General }
65
+
overrideval maxPendingBreaks by c.setting("Max Pending Breaks", 15, 1..30, 1, "The maximum amount of pending breaks") { vis() && page ==Page.General }
66
+
67
+
// Block
54
68
overrideval avoidLiquids by c.setting("Avoid Liquids", true, "Avoids breaking blocks that would cause liquid to spill") { vis() && page ==Page.General }
55
69
overrideval avoidSupporting by c.setting("Avoid Supporting", true, "Avoids breaking the block supporting the player") { vis() && page ==Page.General }
56
70
overrideval breakWeakBlocks by c.setting("Break Weak Blocks", false, "Break blocks that dont have structural integrity (e.g: grass)") { vis() && page ==Page.General }
71
+
overrideval ignoredBlocks by c.setting("Ignored Blocks", allSigns, "Blocks that wont be broken") { vis() && page ==Page.General }
72
+
73
+
// Tool
74
+
overrideval suitableToolsOnly by c.setting("Suitable Tools Only", false, "Places a restriction to only use tools suitable for the given block") { vis() && page ==Page.General }
57
75
overrideval forceSilkTouch by c.setting("Force Silk Touch", false, "Force silk touch when breaking blocks") { vis() && page ==Page.General }
58
76
overrideval forceFortunePickaxe by c.setting("Force Fortune Pickaxe", false, "Force fortune pickaxe when breaking blocks") { vis() && page ==Page.General }
59
77
overrideval minFortuneLevel by c.setting("Min Fortune Level", 1, 1..3, 1, "The minimum fortune level to use") { vis() && page ==Page.General&& forceFortunePickaxe }
60
78
79
+
// Cosmetics
61
80
overrideval sounds by c.setting("Break Sounds", true, "Plays the breaking sounds") { vis() && page ==Page.Cosmetic }
62
81
overrideval particles by c.setting("Particles", true, "Renders the breaking particles") { vis() && page ==Page.Cosmetic }
63
82
overrideval breakingTexture by c.setting("Breaking Overlay", true, "Overlays the breaking texture at its different stages") { vis() && page ==Page.Cosmetic }
64
-
83
+
// Modes
65
84
overrideval renders by c.setting("Renders", true, "Enables the render settings for breaking progress") { vis() && page ==Page.Cosmetic }
66
85
overrideval animation by c.setting("Animation", AnimationMode.Out, "The style of animation used for the box") { vis() && page ==Page.Cosmetic&& renders }
67
-
86
+
// Fill
68
87
overrideval fill by c.setting("Fill", true, "Renders the sides of the box to display break progress") { vis() && page ==Page.Cosmetic&& renders }
69
88
overrideval dynamicFillColor by c.setting("Dynamic Colour", true, "Enables fill color interpolation from start to finish for fill when breaking a block") { vis() && page ==Page.Cosmetic&& renders && fill }
70
89
overrideval staticFillColor by c.setting("Fill Color", Color(255, 0, 0, 60).brighter(), "The color of the fill") { vis() && page ==Page.Cosmetic&& renders &&!dynamicFillColor && fill }
71
90
overrideval startFillColor by c.setting("Start Fill Color", Color(255, 0, 0, 60).brighter(), "The color of the fill at the start of breaking") { vis() && page ==Page.Cosmetic&& renders && dynamicFillColor && fill }
72
91
overrideval endFillColor by c.setting("End Fill Color", Color(0, 255, 0, 60).brighter(), "The color of the fill at the end of breaking") { vis() && page ==Page.Cosmetic&& renders && dynamicFillColor && fill }
73
-
92
+
// Outline
74
93
overrideval outline by c.setting("Outline", true, "Renders the lines of the box to display break progress") { vis() && page ==Page.Cosmetic&& renders }
75
94
overrideval outlineWidth by c.setting("Outline Width", 2, 0..5, 1, "The width of the outline") { vis() && page ==Page.Cosmetic&& renders && outline }
76
95
overrideval dynamicOutlineColor by c.setting("Dynamic Outline Color", true, "Enables color interpolation from start to finish for the outline when breaking a block") { vis() && page ==Page.Cosmetic&& renders && outline }
0 commit comments