Skip to content

Commit fcfafb0

Browse files
committed
Added questions to issue template
Added message for succesful server update Added support message in readme
1 parent 647cdd9 commit fcfafb0

File tree

3 files changed

+51
-11
lines changed

3 files changed

+51
-11
lines changed

.github/ISSUE_TEMPLATE/bug_report.yml

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,41 @@ body:
3737
validations:
3838
required: true
3939

40+
- type: dropdown
41+
id: panel-deployment
42+
attributes:
43+
label: Panel Deployment Method
44+
description: How is the Panel installed?
45+
options:
46+
- Docker
47+
- Bare Metal (Directly on machine)
48+
- Other
49+
validations:
50+
required: true
51+
52+
- type: dropdown
53+
id: wings-deployment
54+
attributes:
55+
label: Wings Deployment Method
56+
description: How is Wings installed?
57+
options:
58+
- Docker
59+
- Bare Metal (Directly on machine)
60+
- Other
61+
validations:
62+
required: true
63+
64+
- type: dropdown
65+
id: wings-location
66+
attributes:
67+
label: Wings Location
68+
description: Is Wings running on the same machine as the Panel?
69+
options:
70+
- Same machine (Local)
71+
- Different machine (Remote)
72+
validations:
73+
required: true
74+
4075
- type: dropdown
4176
id: architecture
4277
attributes:

README.md

Lines changed: 15 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,17 @@
55

66
Panel eggs for hosting Hytale game servers on both Pelican and Pterodactyl panels.
77

8+
> [!IMPORTANT]
9+
> ## Support
10+
>
11+
> **We provide active and fast support for this project!**
12+
>
13+
> If you encounter any issues or have questions, please don't hesitate to ask. We strive to respond and resolve issues as quickly as possible.
14+
>
15+
> **How to get help:**
16+
> 1. **Search Existing Issues:** Check the [GitHub Issues](https://github.com/NATroutter/egg-hytale/issues) to see if your problem has already been reported or solved.
17+
> 2. **Open a New Issue:** If you can't find a solution, [open a new issue](https://github.com/NATroutter/egg-hytale/issues/new/choose).
18+
819
## Overview
920

1021
This egg provides an automated installation and startup configuration for Hytale servers. It handles downloading the Hytale server files, setting up the environment, and starting the server with customizable parameters.
@@ -15,7 +26,7 @@ Both Pelican Panel and Pterodactyl Panel are fully supported with dedicated egg
1526

1627
- Automated Hytale server installation and updates
1728
- Multi-architecture support (x86_64 & ARM64)
18-
- Automatic `hytale-sourcequery` plugin installation
29+
- Automatic `hytale-sourcequery` plugin installation (Optional)
1930
- Built-in server validation tools (World, Assets, Prefabs)
2031
- Performance optimizations via AOT Cache support
2132
- Configurable server parameters and JVM arguments
@@ -26,8 +37,8 @@ Both Pelican Panel and Pterodactyl Panel are fully supported with dedicated egg
2637
## System Requirements
2738

2839
| Component | Minimum | Recommended |
29-
| --------- | ------- | ----------- |
30-
| RAM | 8 GB | 16 GB+ |
40+
| --------- | ------- | ------------|
41+
| RAM | 8 GB | 16 GB+ |
3142
| CPU | Intel Core i5-7500 (or equivalent), AMD Ryzen 3 1200 (or equivalent) | Intel Core i5-10400 (or equivalent), AMD Ryzen 5 3600 (or equivalent) |
3243
| Storage | 10 GB | 20 GB+ |
3344

@@ -36,7 +47,7 @@ Both Pelican Panel and Pterodactyl Panel are fully supported with dedicated egg
3647
| Port | Protocol | Description |
3748
| ---- | -------- | ----------- |
3849
| 5520 | UDP | Game Server Port (Default) |
39-
| 5521 | TCP | Query (Optional) |
50+
| 5521 | TCP | SourceQuery (Optional) |
4051

4152

4253
## Installation
@@ -160,13 +171,6 @@ This project is licensed under the MIT License - see the LICENSE file for detail
160171
- [Pterodactyl Panel](https://pterodactyl.io/)
161172
- [Report Issues](https://github.com/NATroutter/egg-hytale/issues)
162173

163-
## Support
164-
165-
If you encounter any issues or have questions:
166-
167-
- Check existing issues for solutions
168-
- Open an issue on GitHub
169-
170174
---
171175

172176
**Note**: This is an unofficial community-created egg and is not officially supported by Hypixel Studios or the Hytale team.

lib/downloader.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,7 @@ run_update_process() {
7777
echo "$DOWNLOADER_VERSION" > $VERSION_FILE
7878
logger success "Saved version info!"
7979
extract_server_files
80+
logger success "Server has been updated successfully!"
8081
else
8182
logger info "Versions match, skipping update"
8283
fi

0 commit comments

Comments
 (0)