diff options
author | syeyoung <cyoung06@naver.com> | 2023-02-07 14:42:59 +0900 |
---|---|---|
committer | syeyoung <cyoung06@naver.com> | 2023-02-07 14:42:59 +0900 |
commit | 1ac70da12d95bd5fdce6d4995d0c835e25a9c24a (patch) | |
tree | f95c18df8fb593519f8aaf21bf3c402ecdb17247 /loader/src/main/resources | |
parent | bcd5991f42c2a65d11a682fba120c44d35fe8fde (diff) | |
download | Skyblock-Dungeons-Guide-1ac70da12d95bd5fdce6d4995d0c835e25a9c24a.tar.gz Skyblock-Dungeons-Guide-1ac70da12d95bd5fdce6d4995d0c835e25a9c24a.tar.bz2 Skyblock-Dungeons-Guide-1ac70da12d95bd5fdce6d4995d0c835e25a9c24a.zip |
- Error gui
Signed-off-by: syeyoung <cyoung06@naver.com>
Diffstat (limited to 'loader/src/main/resources')
-rw-r--r-- | loader/src/main/resources/assets/dungeons_guide_loader/gui/error.gui | 60 |
1 files changed, 60 insertions, 0 deletions
diff --git a/loader/src/main/resources/assets/dungeons_guide_loader/gui/error.gui b/loader/src/main/resources/assets/dungeons_guide_loader/gui/error.gui new file mode 100644 index 00000000..b99946b3 --- /dev/null +++ b/loader/src/main/resources/assets/dungeons_guide_loader/gui/error.gui @@ -0,0 +1,60 @@ +<!-- + ~ Dungeons Guide - The most intelligent Hypixel Skyblock Dungeons Mod + ~ Copyright (C) 2023 cyoung06 (syeyoung) + ~ + ~ This program is free software: you can redistribute it and/or modify + ~ it under the terms of the GNU Affero General Public License as published + ~ by the Free Software Foundation, either version 3 of the License, or + ~ (at your option) any later version. + ~ + ~ This program is distributed in the hope that it will be useful, + ~ but WITHOUT ANY WARRANTY; without even the implied warranty of + ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + ~ GNU Affero General Public License for more details. + ~ + ~ You should have received a copy of the GNU Affero General Public License + ~ along with this program. If not, see <https://www.gnu.org/licenses/>. + --> + +<bgcolor backgroundColor="#FF111111"> + <stack> + <align hAlign="START" vAlign="END"> + <size width="100" height="20"> + <RoundButton text="Copy Log" on:click="copy"/> + </size> + </align> + <align vAlign="CENTER"> + <ConstrainedBox maxHeight="450"> + <col crossAlign="CENTER"> + <size width="0" height="10"/> + <Text text="Dungeons Guide has ran into error while loading or unloading" color="#FFFFFFFF"/> + <size width="0" height="10"/> + <flexible> + <align hAlign="CENTER"> + <padding left="10" right="10"> + <border> + <line slot="left" dir="VERTICAL" thickness="1.0" color="#FFFFFFFF"/> + <line slot="top" dir="HORIZONTAL" thickness="1.0" color="#FFFFFFFF"/> + <line slot="bottom" dir="HORIZONTAL" thickness="1.0" color="#FFFFFFFF"/> + <line slot="right" dir="VERTICAL" thickness="1.0" color="#FFFFFFFF"/> + <ConstrainedBox maxWidth="600" slot="content"> + <bgcolor backgroundColor="#FF222222"> + <ScrollablePanel> + <Text bind:text="stacktrace" color="#FFFFFFFF"/> + </ScrollablePanel> + </bgcolor> + </ConstrainedBox> + </border> + </padding> + </align> + </flexible> + <size width="0" height="15"/> + <size width="100" height="20"> + <RoundButton text="Continue" on:click="continue"/> + </size> + <size width="0" height="10"/> + </col> + </ConstrainedBox> + </align> + </stack> +</bgcolor>
\ No newline at end of file |