From 4962fb1b91ac0dd2d609d985127412bf0ff8beff Mon Sep 17 00:00:00 2001 From: logicguy Date: Sun, 3 Dec 2023 19:04:55 +0100 Subject: [PATCH 1/3] Website UI update --- common/resources/web/app.css | 148 +++++++++--- common/resources/web/app.js | 6 +- common/resources/web/index.html | 415 ++++++++++---------------------- 3 files changed, 239 insertions(+), 330 deletions(-) diff --git a/common/resources/web/app.css b/common/resources/web/app.css index 22f54995..11861791 100644 --- a/common/resources/web/app.css +++ b/common/resources/web/app.css @@ -1,5 +1,10 @@ +body { + padding: 1em; + margin: 0; +} + button.faded { - opacity: 0.2; + opacity: 0.3; } table.main-table > thead > tr > th { @@ -18,13 +23,24 @@ table.main-table > tbody > tr > td > button { button { box-sizing: border-box; - border-radius: 10px; - border-width: 4px; - border-style: solid; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; font-weight: bold; font-size: 14px; - height: 32px; + min-height: 32px; + width: 15em; + background-color: #333; + border-color: transparent; +} + +:not(.main-container) .child :is(button) { + border-color: transparent; + background-color: transparent; + width: 100%; +} + +button:hover:not(:disabled) { + filter: brightness(80%); + cursor: pointer; } button + button { @@ -167,7 +183,7 @@ ul.add-entity-list button.edit { gap: 8px; } -.entity-info-classname { +.entitSy-info-classname { display: inline-block; } @@ -258,8 +274,18 @@ input[type=number] { font-size: 14px; } +.search-wrapper { + position: fixed; + bottom: 1em; + left: 1em; +} + input.search { width: 300px; + padding: 0.4em; + border: none; + outline: none; + border-radius: 0px; } div.module-main { @@ -429,16 +455,11 @@ div.edit-block-settings { } fieldset { - border-width: 4px; - border-style: solid; - border-radius: 10px; - width: 1000px; -} - -div.module-sections { - display: flex; - flex-direction: column; - gap: 16px; + background-color: #15151580; + width: calc(100% - 30px); + border: none; + color: #fff; + width: 1000px; } legend { @@ -447,6 +468,20 @@ legend { font-size: 14px; display: flex; align-items: center; + + background-color: #2F81F7; + color: #fff; + + width: calc(100% + 24px); + padding: 10px; + box-sizing: border-box; + transform: translateX(-12px); +} + +div.module-sections { + display: flex; + flex-direction: column; + gap: 16px; } legend > label { @@ -781,28 +816,28 @@ table.inputs-table { @media (prefers-color-scheme: light) { body { - background-color: #FFFFFF; color: #000000; + background: + linear-gradient( + to bottom right, + #ffffff, + #999999 + ); + min-height: 100vh; } a, a:visited { - color: #2F81F7; + color: #9FD0FB; text-decoration: none; } a:hover { - color: #2F81F7; + color: #9FD0FB; text-decoration: underline; } button { - border-color:#333AA3; - background-color: #FFFFFF; - color: #000000; - } - - button:hover:not(:disabled) { - background-color: #BBBFFF; + color: #ddd; } .button-highlight { @@ -829,6 +864,7 @@ table.inputs-table { ul.list-base > li { background: linear-gradient(0deg, #CCCCCC, #FFFFFF 50%, #CCCCCC 100%); + color: #000; } ul.list-base > li + li { @@ -836,7 +872,7 @@ table.inputs-table { } div.entity-info-interface:after { - color: #8A5F10; + color: #ddd; } div.entity-info-id { @@ -844,11 +880,11 @@ table.inputs-table { } div.section-description { - color: #92711f; + color: #ddd; } div.input-description { - color: #92711f; + color: #ddd; } fieldset { @@ -880,12 +916,22 @@ table.inputs-table { ul.refs .comment { color: #277813; } + + ul.refs { + background-color: #242424; + } } @media (prefers-color-scheme: dark) { body { - background-color: #3C3F41; color: #BBBBBB; + background: + linear-gradient( + to bottom right, + #101010, + #292929 + ); + min-height: 100vh; } a, a:visited { @@ -899,15 +945,9 @@ table.inputs-table { } button { - background-color: #4C5052; - border-color: #5E6060; color: #BBBBBB; } - button:hover:not(:disabled) { - background-color: #365880; - } - .button-highlight { box-shadow: 0 0 8px 4px #4C8241; } @@ -949,7 +989,7 @@ table.inputs-table { } div.section-description { - color: #FFC66D; + color: #ddd; } div.input-description { @@ -985,4 +1025,36 @@ table.inputs-table { ul.refs .comment { color: #43CE21; } -} \ No newline at end of file + + ul.refs { + background-color: #242424; + } +} + +/* Main page styles */ +.main-container { + display: flex; + width: 100%; + justify-content: space-between; + gap: 20px; +} + +.main-container > div { + flex: 1; +} + +.main-container .child { + flex: 1; + background-color: #15151580; + height: auto; +} + +.main-container .title { + height: 2em; + line-height: 2em; + text-align: center; + + background-color: #2F81F7; + color: #fff; + font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; +} diff --git a/common/resources/web/app.js b/common/resources/web/app.js index b609398d..39e485ae 100644 --- a/common/resources/web/app.js +++ b/common/resources/web/app.js @@ -104,7 +104,7 @@ import { addComponent } from '/components/Loader.js' loadModule('ElytraTunnelConfig', ['elytra', 'tunnel']); loadModule('FreeCamConfig', ['freecam', 'camera']); loadModule('LockInputsConfig', ['lock', 'inputs']); - loadModule('MovementHackConfig', ['movement', 'hack']); + loadModule('MovementHackConfig', ['movement', 'hack', 'anti knockback', 'speed', 'highjump']); loadModule('ScaffoldConfig', ['scaffold']); loadModule('AdvancedTooltipsConfig', ['advanced', 'tooltips']); loadModule('FogConfig', ['fog']); @@ -148,7 +148,7 @@ import { addComponent } from '/components/Loader.js' loadModule('VillagerRollerConfig', ['villager', 'roller']); loadModule('AutoHotbarConfig', ['auto', 'hotbar']); loadModule('InvMoveConfig', ['inventory', 'move', 'keys']); - loadModule('AreaMineConfig', ['area', 'mine']); + loadModule('AreaMineConfig', ['area', 'mine', 'nuker']); loadModule('ServerPluginsConfig', ['server', 'plugins']); loadModule('HitboxSizeConfig', ['hitbox', 'size']); loadModule('BedrockBreakerConfig', ['bedrock', 'breaker']); @@ -156,4 +156,4 @@ import { addComponent } from '/components/Loader.js' let app = Vue.createApp(args); app.mount('#vue-app'); -})(); \ No newline at end of file +})(); diff --git a/common/resources/web/index.html b/common/resources/web/index.html index cbb10563..fd5f8614 100644 --- a/common/resources/web/index.html +++ b/common/resources/web/index.html @@ -17,300 +17,137 @@ -
- Filter: +
+
+
+
+ Automation +
+
+
+
+
+
+
+
+
+
+
+
+ +
+
+ +
+
+
+ ESP +
+
+
+
+
+
+
+
+
+ +
+
+ +
+
+
+ Hacks +
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ +
+
+ +
+
+
+ Visuals +
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ +
+
+ +
+
+
+ Scripting +
+
+
+
+
+
+ +
+
+ +
+
+
+ Utility +
+
+
+
+
+ +
+ +
+
+ +
+ + + +
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
AutomationESPHacksVisualsScriptingUtility
- - - - - - - - - - - -
- - - - - - - - - - - -
- - - - - - - - - - - -
- - - - - - - - - - - -
- - - - - - - - - - - - -
- - - - - - - - - -
- - - - - - - - - -
- - - - - - - - - -
- - - - - - - -
- - - - - -
- - - - - -
- - - - - -
- - - -
- - - -
- - - -
- - - -
- -
- -
- -
- -
- \ No newline at end of file + From c935546f8c8fb795d0dc1846d054a2034eb99ab3 Mon Sep 17 00:00:00 2001 From: logicguy Date: Sun, 3 Dec 2023 19:04:55 +0100 Subject: [PATCH 2/3] Website UI update --- common/resources/web/app.css | 143 ++++++++--- common/resources/web/app.js | 6 +- common/resources/web/index.html | 417 ++++++++++---------------------- 3 files changed, 245 insertions(+), 321 deletions(-) diff --git a/common/resources/web/app.css b/common/resources/web/app.css index 668a441f..584d8172 100644 --- a/common/resources/web/app.css +++ b/common/resources/web/app.css @@ -1,5 +1,10 @@ +body { + padding: 1em; + margin: 0; +} + button.faded { - opacity: 0.2; + opacity: 0.3; } table.main-table > thead > tr > th { @@ -18,13 +23,24 @@ table.main-table > tbody > tr > td > button { button { box-sizing: border-box; - border-radius: 10px; - border-width: 4px; - border-style: solid; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; font-weight: bold; font-size: 14px; - height: 32px; + min-height: 32px; + width: 15em; + background-color: #333; + border-color: transparent; +} + +:not(.main-container) .child :is(button) { + border-color: transparent; + background-color: transparent; + width: 100%; +} + +button:hover:not(:disabled) { + filter: brightness(80%); + cursor: pointer; } button + button { @@ -167,7 +183,7 @@ ul.add-entity-list button.edit { gap: 8px; } -.entity-info-classname { +.entitSy-info-classname { display: inline-block; } @@ -258,8 +274,18 @@ input[type=number] { font-size: 14px; } +.search-wrapper { + position: fixed; + bottom: 1em; + left: 1em; +} + input.search { width: 300px; + padding: 0.4em; + border: none; + outline: none; + border-radius: 0px; } div.module-main { @@ -429,16 +455,11 @@ div.edit-block-settings { } fieldset { - border-width: 4px; - border-style: solid; - border-radius: 10px; - width: 1000px; -} - -div.module-sections { - display: flex; - flex-direction: column; - gap: 16px; + background-color: #15151580; + width: calc(100% - 30px); + border: none; + color: #fff; + width: 1000px; } legend { @@ -447,6 +468,20 @@ legend { font-size: 14px; display: flex; align-items: center; + + background-color: #2F81F7; + color: #fff; + + width: calc(100% + 24px); + padding: 10px; + box-sizing: border-box; + transform: translateX(-12px); +} + +div.module-sections { + display: flex; + flex-direction: column; + gap: 16px; } legend > label { @@ -781,21 +816,28 @@ table.inputs-table { @media (prefers-color-scheme: light) { body { - background-color: #FFFFFF; color: #000000; + background: + linear-gradient( + to bottom right, + #ffffff, + #999999 + ); + min-height: 100vh; } a, a:visited { - color: #2F81F7; + color: #9FD0FB; text-decoration: none; } a:hover { - color: #2F81F7; + color: #9FD0FB; text-decoration: underline; } button { +<<<<<<< HEAD border-color:#333AA3; background-color: #FFFFFF; color: #000000; @@ -807,6 +849,9 @@ table.inputs-table { button:hover:not(:disabled) { background-color: #BBBFFF; +======= + color: #ddd; +>>>>>>> 4962fb1 (Website UI update) } .button-highlight { @@ -833,6 +878,7 @@ table.inputs-table { ul.list-base > li { background: linear-gradient(0deg, #CCCCCC, #FFFFFF 50%, #CCCCCC 100%); + color: #000; } ul.list-base > li + li { @@ -840,7 +886,7 @@ table.inputs-table { } div.entity-info-interface:after { - color: #8A5F10; + color: #ddd; } div.entity-info-id { @@ -848,11 +894,11 @@ table.inputs-table { } div.section-description { - color: #92711f; + color: #ddd; } div.input-description { - color: #92711f; + color: #ddd; } fieldset { @@ -884,12 +930,22 @@ table.inputs-table { ul.refs .comment { color: #277813; } + + ul.refs { + background-color: #242424; + } } @media (prefers-color-scheme: dark) { body { - background-color: #3C3F41; color: #BBBBBB; + background: + linear-gradient( + to bottom right, + #101010, + #292929 + ); + min-height: 100vh; } a, a:visited { @@ -903,11 +959,10 @@ table.inputs-table { } button { - background-color: #4C5052; - border-color: #5E6060; color: #BBBBBB; } +<<<<<<< HEAD button.active { background-color: #3F523C; } @@ -916,6 +971,8 @@ table.inputs-table { background-color: #365880; } +======= +>>>>>>> 4962fb1 (Website UI update) .button-highlight { box-shadow: 0 0 8px 4px #4C8241; } @@ -957,7 +1014,7 @@ table.inputs-table { } div.section-description { - color: #FFC66D; + color: #ddd; } div.input-description { @@ -993,4 +1050,36 @@ table.inputs-table { ul.refs .comment { color: #43CE21; } -} \ No newline at end of file + + ul.refs { + background-color: #242424; + } +} + +/* Main page styles */ +.main-container { + display: flex; + width: 100%; + justify-content: space-between; + gap: 20px; +} + +.main-container > div { + flex: 1; +} + +.main-container .child { + flex: 1; + background-color: #15151580; + height: auto; +} + +.main-container .title { + height: 2em; + line-height: 2em; + text-align: center; + + background-color: #2F81F7; + color: #fff; + font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; +} diff --git a/common/resources/web/app.js b/common/resources/web/app.js index 06baf603..a9844c97 100644 --- a/common/resources/web/app.js +++ b/common/resources/web/app.js @@ -108,7 +108,7 @@ import { addComponent } from '/components/Loader.js' loadModule('ElytraTunnelConfig', ['elytra', 'tunnel']); loadModule('FreeCamConfig', ['freecam', 'camera']); loadModule('LockInputsConfig', ['lock', 'inputs']); - loadModule('MovementHackConfig', ['movement', 'hack']); + loadModule('MovementHackConfig', ['movement', 'hack', 'anti knockback', 'speed', 'highjump']); loadModule('ScaffoldConfig', ['scaffold']); loadModule('AdvancedTooltipsConfig', ['advanced', 'tooltips']); loadModule('FogConfig', ['fog']); @@ -152,7 +152,7 @@ import { addComponent } from '/components/Loader.js' loadModule('VillagerRollerConfig', ['villager', 'roller']); loadModule('AutoHotbarConfig', ['auto', 'hotbar']); loadModule('InvMoveConfig', ['inventory', 'move', 'keys']); - loadModule('AreaMineConfig', ['area', 'mine']); + loadModule('AreaMineConfig', ['area', 'mine', 'nuker']); loadModule('ServerPluginsConfig', ['server', 'plugins']); loadModule('HitboxSizeConfig', ['hitbox', 'size']); loadModule('BedrockBreakerConfig', ['bedrock', 'breaker']); @@ -161,4 +161,4 @@ import { addComponent } from '/components/Loader.js' let app = Vue.createApp(args); app.mount('#vue-app'); -})(); \ No newline at end of file +})(); diff --git a/common/resources/web/index.html b/common/resources/web/index.html index b334604a..7af26129 100644 --- a/common/resources/web/index.html +++ b/common/resources/web/index.html @@ -17,302 +17,137 @@ -
- Filter: +
+
+
+
+ Automation +
+
+
+
+
+
+
+
+
+
+
+
+ +
+
+ +
+
+
+ ESP +
+
+
+
+
+
+
+
+
+ +
+
+ +
+
+
+ Hacks +
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ +
+
+ +
+
+
+ Visuals +
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ +
+
+ +
+
+
+ Scripting +
+
+
+
+
+
+ +
+
+ +
+
+
+ Utility +
+
+
+
+
+ +
+ +
+
+ +
+ + + +
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
AutomationESPHacksVisualsScriptingUtility
- - - - - - - - - - - -
- - - - - - - - - - - -
- - - - - - - - - - - -
- - - - - - - - - - - -
- - - - - - - - - - - - -
- - - - - - - - - -
- - - - - - - - - - - -
- - - - - - - - - -
- - - - - - - -
- - - - - -
- - - - - -
- - - - - -
- - - -
- - - -
- - - -
- - - -
- -
- -
- -
- -
- \ No newline at end of file + From 259301fc8afc13081f113548ce4b442362bb2c27 Mon Sep 17 00:00:00 2001 From: logicguy Date: Wed, 6 Dec 2023 00:01:37 +0100 Subject: [PATCH 3/3] General layout changes --- common/resources/web/app.css | 17 +++- .../components/AdvancedTooltipsConfig.html | 44 ++++++---- .../components/AntiRespawnResetConfig.html | 11 +-- .../web/components/ArmorOverlayConfig.html | 11 +-- .../web/components/AutoCriticalsConfig.html | 48 +++++----- .../web/components/AutoFishConfig.html | 15 ++-- .../web/components/AutoTotemConfig.html | 11 +-- .../web/components/BoatHackConfig.html | 5 +- .../web/components/ChunksConfig.html | 54 +++++++----- .../components/ContainerSummaryConfig.html | 15 ++-- .../components/DeathCoordinatesConfig.html | 11 +-- .../web/components/ElytraTunnelConfig.html | 38 ++++---- .../web/components/EndCityChunksConfig.html | 11 +-- .../web/components/EntitiesConfig.html | 10 +-- .../web/components/EventsScriptingConfig.html | 47 +++++----- .../components/GameTickScriptingConfig.html | 56 ++++++------ .../web/components/LockInputsConfig.html | 87 ++++++++++--------- .../web/components/NewChunksConfig.html | 11 +-- .../web/components/NoFallConfig.html | 11 +-- .../web/components/ParticlesConfig.html | 41 +++++---- .../web/components/PigHackConfig.html | 66 +++++++------- .../web/components/ScriptsConfig.html | 9 +- .../web/components/ShulkerTooltipConfig.html | 11 +-- .../web/components/StatusEffectsConfig.html | 12 +-- .../web/components/StatusOverlayConfig.html | 38 ++++---- .../web/components/UserNameConfig.html | 11 +-- common/resources/web/index.html | 3 +- 27 files changed, 381 insertions(+), 323 deletions(-) diff --git a/common/resources/web/app.css b/common/resources/web/app.css index eae157e0..675cc191 100644 --- a/common/resources/web/app.css +++ b/common/resources/web/app.css @@ -47,6 +47,11 @@ button + button { margin-left: 16px; } +button + button + button { + width: unset !important; + min-width: 220px !important; +} + select { display: inline-block; box-sizing: border-box; @@ -888,7 +893,7 @@ table.inputs-table { } div.section-description { - color: #ddd; + color: #ffe7b8; } div.input-description { @@ -1001,7 +1006,7 @@ table.inputs-table { } div.section-description { - color: #ddd; + color: #ffe7b8; } div.input-description { @@ -1071,3 +1076,11 @@ table.inputs-table { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; font-weight: bold; } + +legend .switch-label { + align-items: unset !important; +} + +legend .switch-label span { + margin-bottom: 4px !important; +} diff --git a/common/resources/web/components/AdvancedTooltipsConfig.html b/common/resources/web/components/AdvancedTooltipsConfig.html index 31c0b582..b608c3b5 100644 --- a/common/resources/web/components/AdvancedTooltipsConfig.html +++ b/common/resources/web/components/AdvancedTooltipsConfig.html @@ -2,23 +2,29 @@
-
- Advanced Tooltips -
- +
+

Advanced Tooltips

+
+ Show extra tooltip information in the inventory GUI.
-
- -
-
- \ No newline at end of file +
+ Configuration +
+ +
+
+ +
+
+ + diff --git a/common/resources/web/components/AntiRespawnResetConfig.html b/common/resources/web/components/AntiRespawnResetConfig.html index a406d71a..d645d74f 100644 --- a/common/resources/web/components/AntiRespawnResetConfig.html +++ b/common/resources/web/components/AntiRespawnResetConfig.html @@ -2,12 +2,13 @@
-
- Anti Respawn Reset +
+

Anti Respawn Reset

Prevents accidental right clicks on beds/respawn anchors.
-
+ +
-
- \ No newline at end of file + + diff --git a/common/resources/web/components/ArmorOverlayConfig.html b/common/resources/web/components/ArmorOverlayConfig.html index 10b7ab1e..2bc0d10c 100644 --- a/common/resources/web/components/ArmorOverlayConfig.html +++ b/common/resources/web/components/ArmorOverlayConfig.html @@ -2,12 +2,13 @@
-
- Armor Overlay +
+

Armor Overlay

Display 4 armor slots above food bar.
-
+ +
-
- \ No newline at end of file + + diff --git a/common/resources/web/components/AutoCriticalsConfig.html b/common/resources/web/components/AutoCriticalsConfig.html index eaf78de9..f1c2eac0 100644 --- a/common/resources/web/components/AutoCriticalsConfig.html +++ b/common/resources/web/components/AutoCriticalsConfig.html @@ -2,29 +2,31 @@
-
- Auto Criticals +
+

Auto Criticals

Tricks server to think every your attack is critical.
-
- -
-
- Some servers may think you are lagging if you try to use auto criticals if you are not standing on ground. In this case server tries to rollback you to another position causing problems. Use below setting in this case. -
-
- -
-
- \ No newline at end of file +
+ + + +
+ Some servers may think you are lagging if you try to use auto criticals if you are not standing on ground. In this case server tries to rollback you to another position causing problems. Use below setting in this case. +
+
+ +
+
+ + diff --git a/common/resources/web/components/AutoFishConfig.html b/common/resources/web/components/AutoFishConfig.html index 1379004e..696f6d93 100644 --- a/common/resources/web/components/AutoFishConfig.html +++ b/common/resources/web/components/AutoFishConfig.html @@ -2,18 +2,19 @@
-
- Auto Fish +
+

Auto Fish

To start automatic fishing, throw fishing bobber once. To stop you can pull bobber manually or disable it.
-
+ +
-
- \ No newline at end of file + + diff --git a/common/resources/web/components/AutoTotemConfig.html b/common/resources/web/components/AutoTotemConfig.html index ec993379..0db4728a 100644 --- a/common/resources/web/components/AutoTotemConfig.html +++ b/common/resources/web/components/AutoTotemConfig.html @@ -2,12 +2,13 @@
-
- Auto Totem +
+

Auto Totem

Automatically puts Totem of Undying into your offhand slot, if this slot is empty and you have totem in your inventory.
-
+ +
-
- \ No newline at end of file + + diff --git a/common/resources/web/components/BoatHackConfig.html b/common/resources/web/components/BoatHackConfig.html index 6ade901c..01fa31c1 100644 --- a/common/resources/web/components/BoatHackConfig.html +++ b/common/resources/web/components/BoatHackConfig.html @@ -4,6 +4,9 @@

Boat Hack

+
+ ? +
@@ -59,4 +62,4 @@

Boat Hack

- \ No newline at end of file + diff --git a/common/resources/web/components/ChunksConfig.html b/common/resources/web/components/ChunksConfig.html index f16a0188..5deb2c2d 100644 --- a/common/resources/web/components/ChunksConfig.html +++ b/common/resources/web/components/ChunksConfig.html @@ -2,29 +2,35 @@
-
- Chunks +
+

Chunks

- Overrides server render distance. Some servers have pretty low render distance, and your game setting is getting overriden. For example, if server set render distance = 6 chunks, that means game doesn't render blocks 6*16=96 distance above or below you. If you select below option, you can see far above/below you (if you have decent Render Distance in-game setting). + Bypass the server render distance .
-
- -
-
- Show unloaded chunks if they are in view distance. Makes your Minecraft client to respect your Render/Simulation Distance from game settings, and ignore settings set by server. Since these settings are set by server during login process, you need to relogin if you change Render/Simulation Distance. -
-
- -
-
- \ No newline at end of file +
+ Override setup +
+ Overrides server render distance. Some servers have pretty low render distance, and your game setting is getting overriden. For example, if server set render distance = 6 chunks, that means game doesn't render blocks 6*16=96 distance above or below you. If you select below option, you can see far above/below you (if you have decent Render Distance in-game setting). +
+
+ +
+
+ Show unloaded chunks if they are in view distance. Makes your Minecraft client to respect your Render/Simulation Distance from game settings, and ignore settings set by server. Since these settings are set by server during login process, you need to relogin if you change Render/Simulation Distance. +
+
+ +
+
+ + diff --git a/common/resources/web/components/ContainerSummaryConfig.html b/common/resources/web/components/ContainerSummaryConfig.html index c8dab322..4425e95b 100644 --- a/common/resources/web/components/ContainerSummaryConfig.html +++ b/common/resources/web/components/ContainerSummaryConfig.html @@ -2,27 +2,26 @@
-
- Container Summary +
+

Container Summary

Shows total number of items inside chests, barrels, etc., including nested shulker boxes.
Hold Alt to disable stacks grouping.
-
-
+
- \ No newline at end of file + diff --git a/common/resources/web/components/DeathCoordinatesConfig.html b/common/resources/web/components/DeathCoordinatesConfig.html index 72c684fa..aea528de 100644 --- a/common/resources/web/components/DeathCoordinatesConfig.html +++ b/common/resources/web/components/DeathCoordinatesConfig.html @@ -2,12 +2,13 @@
-
- Death Coordinates +
+

Death Coordinates

Displays coordinates on death screen.
-
+ +
-
- \ No newline at end of file + + diff --git a/common/resources/web/components/ElytraTunnelConfig.html b/common/resources/web/components/ElytraTunnelConfig.html index 8d1df7aa..e9d1a48c 100644 --- a/common/resources/web/components/ElytraTunnelConfig.html +++ b/common/resources/web/components/ElytraTunnelConfig.html @@ -2,23 +2,25 @@
-
- Elytra Tunnel +
+

Elytra Tunnel

- Allows you to fly in nether highways without stucking in holes in ceiling.
- For example, if ceiling is Y=123, you should enter slightly lower value, for example about 122.8. This module emulates collissions on the client, thus doesn't allow you to reach higher Y. + Allows you to fly in nether highways without stucking in holes in ceiling.
+ For example, if ceiling is Y=123, you should enter slightly lower value, for example about 122.8. This module emulates collissions on the client, thus doesn't allow you to reach higher Y.
-
- -
-
- Limit Y: - -
-
- \ No newline at end of file +
+ + + +
+ Limit Y: + +
+
+ + diff --git a/common/resources/web/components/EndCityChunksConfig.html b/common/resources/web/components/EndCityChunksConfig.html index 9ea57f58..406174ec 100644 --- a/common/resources/web/components/EndCityChunksConfig.html +++ b/common/resources/web/components/EndCityChunksConfig.html @@ -2,12 +2,13 @@
-
- End City Chunks +
+

End City Chunks

Highlights chunks where End Cities can generate. Chunk groups 9x9 size will be highlighted with transparent green layers, and center chunks highlighted with yellow. This helps you to move in direction of yellow path moving from one group to another.
-
+ +
-
- \ No newline at end of file + + diff --git a/common/resources/web/components/EntitiesConfig.html b/common/resources/web/components/EntitiesConfig.html index 4ad37d60..36393870 100644 --- a/common/resources/web/components/EntitiesConfig.html +++ b/common/resources/web/components/EntitiesConfig.html @@ -57,12 +57,12 @@
- - + +
- - + +
@@ -284,4 +284,4 @@ - \ No newline at end of file + diff --git a/common/resources/web/components/EventsScriptingConfig.html b/common/resources/web/components/EventsScriptingConfig.html index d07536ae..bca9388c 100644 --- a/common/resources/web/components/EventsScriptingConfig.html +++ b/common/resources/web/components/EventsScriptingConfig.html @@ -4,31 +4,28 @@ -
- Events Scripting -
- +
+

Events Scripting

+
+ Create event based scripts, check the Documentation for more
- -
-
- Code: +
+ +
+
+ +
-
- +
+
    +
  • +
-
-
-
    -
  • -
-
-
-
\ No newline at end of file +
+ + diff --git a/common/resources/web/components/GameTickScriptingConfig.html b/common/resources/web/components/GameTickScriptingConfig.html index 80b90823..42c11356 100644 --- a/common/resources/web/components/GameTickScriptingConfig.html +++ b/common/resources/web/components/GameTickScriptingConfig.html @@ -4,42 +4,40 @@ -
- Game Tick Scripting -
- -
+
+

Game Tick Scripting

This module may be removed in the future. Move your code to Events Scripting module like this:
-events.onHandleKeys(() => {
-    // your code
-});
+  events.onHandleKeys(() => {
+      // your code
+  });
             
Or if you want to run something every game tick, not related to handling keys, use this:
-events.onTickEnd(() => {
-    // your code
-});
+  events.onTickEnd(() => {
+      // your code
+  });
             
-
-
- Code: + +
+ +
+
+ +
-
- +
+
    +
  • +
-
-
-
    -
  • -
-
-
-
\ No newline at end of file +
+ + diff --git a/common/resources/web/components/LockInputsConfig.html b/common/resources/web/components/LockInputsConfig.html index 840373e6..daa2582c 100644 --- a/common/resources/web/components/LockInputsConfig.html +++ b/common/resources/web/components/LockInputsConfig.html @@ -2,48 +2,51 @@
-
- Lock Inputs +
+

Lock Inputs

Emulate holding keys or lock mouse input.
-
- Disables mouse input to rotate your character. Can be useful for farming/building in background when you need to periodically check minecraft window. -
-
- -
-
- Hold specific key. -
-
- -
-
- -
-
- -
-
- \ No newline at end of file +
+ Setup +
+ Disables mouse input to rotate your character. Can be useful for farming/building in background when you need to periodically check minecraft window. +
+
+ +
+
+ Hold specific key. +
+
+ +
+
+ +
+
+ +
+
+ + diff --git a/common/resources/web/components/NewChunksConfig.html b/common/resources/web/components/NewChunksConfig.html index 1e9db245..66d445a0 100644 --- a/common/resources/web/components/NewChunksConfig.html +++ b/common/resources/web/components/NewChunksConfig.html @@ -2,8 +2,8 @@
-
- New Chunks +
+

New Chunks

Uses liquid flows (water and lava) to determine if chunk is newly generated. Chunk status is displayed on Exploration Mini Map.
Red squares - old chunks (chunks contains non-source water/lava blocks)
@@ -11,7 +11,8 @@ Yelllow squares - relatively new chunks (chunk already had non-source water/lava, but new non-source water/lava blocks appeared)
Chunk without square - there is no water/lava to guess chunk status
-
+ +
-
- \ No newline at end of file + + diff --git a/common/resources/web/components/NoFallConfig.html b/common/resources/web/components/NoFallConfig.html index d2df932c..e3b29590 100644 --- a/common/resources/web/components/NoFallConfig.html +++ b/common/resources/web/components/NoFallConfig.html @@ -2,12 +2,13 @@
-
- No Fall +
+

No Fall

When you are falling fast enough to take damage, it sends information to server that you are staying on the ground. Server uses this information to calculate fall damage. If server doesn't have protection against this usually you take no fall damage.
-
+ +
-
- \ No newline at end of file + + diff --git a/common/resources/web/components/ParticlesConfig.html b/common/resources/web/components/ParticlesConfig.html index 4de2bee4..a0f743d7 100644 --- a/common/resources/web/components/ParticlesConfig.html +++ b/common/resources/web/components/ParticlesConfig.html @@ -2,26 +2,29 @@
-
- Particles +
+

Particles

Disables some particles.
-
- + +
+
+ +
+
+ +
-
- -
-
- \ No newline at end of file + + diff --git a/common/resources/web/components/PigHackConfig.html b/common/resources/web/components/PigHackConfig.html index 2eaac89f..4a0341a2 100644 --- a/common/resources/web/components/PigHackConfig.html +++ b/common/resources/web/components/PigHackConfig.html @@ -2,38 +2,40 @@
-
- Pig Hack +
+

Pig Hack

Most servers have protection against big speed increase. However small speed increase may work well.
-
- -
-
- -
-
- -
-
- Steering speed: - -
-
- \ No newline at end of file +
+ + + +
+ +
+
+ +
+
+ Steering speed: + +
+
+ + diff --git a/common/resources/web/components/ScriptsConfig.html b/common/resources/web/components/ScriptsConfig.html index ee8a1b33..7fee948b 100644 --- a/common/resources/web/components/ScriptsConfig.html +++ b/common/resources/web/components/ScriptsConfig.html @@ -2,6 +2,12 @@
+
+

Keybind scripts

+
+ Setup scripts triggered when you press a keybind, you can set the key under control settings on your client. +
+
Scripts
@@ -65,4 +71,5 @@
Scripting Language Reference -
\ No newline at end of file + + diff --git a/common/resources/web/components/ShulkerTooltipConfig.html b/common/resources/web/components/ShulkerTooltipConfig.html index 0d8c3e8c..80720426 100644 --- a/common/resources/web/components/ShulkerTooltipConfig.html +++ b/common/resources/web/components/ShulkerTooltipConfig.html @@ -2,12 +2,13 @@
-
- Shulker Tooltip +
+

Shulker Tooltip

Hover mouse cursor over shulker box in inventory to see shulker content. Hold Ctrl while tooltip is active to lock tooltip in place. After this you can hover mouse cursor over items in shulker box.
-
+ +
-
- \ No newline at end of file + + diff --git a/common/resources/web/components/StatusEffectsConfig.html b/common/resources/web/components/StatusEffectsConfig.html index eaccfee3..a87d1eb7 100644 --- a/common/resources/web/components/StatusEffectsConfig.html +++ b/common/resources/web/components/StatusEffectsConfig.html @@ -2,12 +2,14 @@
-
- Status Effects +
+

Status Effects

Display status effects above hotbar. Also displays seconds.
-
+ +
+
-
- \ No newline at end of file + + diff --git a/common/resources/web/components/StatusOverlayConfig.html b/common/resources/web/components/StatusOverlayConfig.html index e2f22c8f..54347ae4 100644 --- a/common/resources/web/components/StatusOverlayConfig.html +++ b/common/resources/web/components/StatusOverlayConfig.html @@ -4,9 +4,12 @@ -
- Status Overlay -
+
+

Status Overlay

+
+ Create a custom script for your status overlay. +
+
-
-
- Code: +
+
+ Code +
+
+ +
-
- +
+
    +
  • +
-
-
-
    -
  • -
-
-
- Scripting Language Reference -
\ No newline at end of file + Scripting Language Reference +
+ + diff --git a/common/resources/web/components/UserNameConfig.html b/common/resources/web/components/UserNameConfig.html index 4cd3c44c..ebaf8e2a 100644 --- a/common/resources/web/components/UserNameConfig.html +++ b/common/resources/web/components/UserNameConfig.html @@ -2,19 +2,20 @@
-
- User Name +
+

Username

Change user name without restarting Minecraft. This is only for pirate servers, it cannot work with Mojang authentication.
-
+
+ -
+
Name: @@ -28,4 +29,4 @@
- \ No newline at end of file + diff --git a/common/resources/web/index.html b/common/resources/web/index.html index 7af26129..4e4a45cd 100644 --- a/common/resources/web/index.html +++ b/common/resources/web/index.html @@ -79,7 +79,7 @@


- + @@ -117,6 +117,7 @@


+