93 lines
3 KiB
YAML
93 lines
3 KiB
YAML
name: "💬 Help"
|
|
about: "Request help."
|
|
title: "help: "
|
|
labels:
|
|
- "Help/Wanted"
|
|
body:
|
|
- type: "markdown"
|
|
id: "text-introduction"
|
|
attributes:
|
|
value: |
|
|
Hey there! Seems like you have some kind of issue with the StarOpenSource EngineMC. \
|
|
Please answer the following questions accurately, otherwise we may not be able to help you. \
|
|
\
|
|
**Please check if the same help request already exists. If so, participate in that one instead. If another issue is similar, make sure to mention the related issues.** \
|
|
**Please don't censor anything *except* sensitive information. You don't need to be embarrased about your username. You censor your stuff, we censor our answers.**
|
|
- type: "textarea"
|
|
id: "help-description"
|
|
attributes:
|
|
label: "Problem description"
|
|
description: "Explain what your problem is as detailed as possible."
|
|
placeholder: "How can I create a custom LoggerImplementation implementation?"
|
|
validations:
|
|
required: true
|
|
- type: "textarea"
|
|
id: "help-log"
|
|
attributes:
|
|
label: "Log"
|
|
description: |
|
|
Please insert the ENTIRE log output here, so we can understand the problem at hand. \
|
|
You must give us `DIAGNOSTIC` level logs (pass `-Dsosengine.base.loggerLevel=diagnostic` to the JVM) with the default log template.
|
|
|
|
*This field can be left empty if the problem you are faciing does not involve/require log output.**
|
|
placeholder: "Your log file here..."
|
|
value: |
|
|
```plain
|
|
Your log file here...
|
|
```
|
|
validations:
|
|
required: false
|
|
- type: "textarea"
|
|
id: "help-snippet"
|
|
attributes:
|
|
label: "Code snippet"
|
|
description: |
|
|
Please insert a snippet of the application code which you think is causing the issue.
|
|
|
|
**This field can be left empty if the problem you are faciing does not involve/require code.**
|
|
value: |
|
|
```java
|
|
Your code snippet here...
|
|
```
|
|
validations:
|
|
required: false
|
|
- type: "input"
|
|
id: "port-version"
|
|
attributes:
|
|
label: "EngineMC version"
|
|
description: "Input the EngineMC version here."
|
|
placeholder: "Example: v1-alpha0"
|
|
validations:
|
|
required: true
|
|
- type: "dropdown"
|
|
id: "minecraft-version"
|
|
attributes:
|
|
label: "Minecraft version"
|
|
description: "Which Minecraft version is does your plugin or mod target?"
|
|
options:
|
|
- "1.20.1"
|
|
- "1.21.0 and below"
|
|
validations:
|
|
required: true
|
|
- type: "dropdown"
|
|
id: "minecraft-loader"
|
|
attributes:
|
|
label: "Server software"
|
|
description: "Which server software are you using?"
|
|
options:
|
|
- "SpigotMC"
|
|
- "PaperMC"
|
|
- "PaperMC derivative (name it)"
|
|
- "Fabric"
|
|
- "NeoForge"
|
|
- "Forge"
|
|
- "Hybrid servers (e.g. Magma, Mohist) (name it)"
|
|
- "Other (name it)"
|
|
validations:
|
|
required: true
|
|
- type: "markdown"
|
|
id: "text-tysm"
|
|
attributes:
|
|
value: |
|
|
Thank you for filling out this help form.
|
|
Please check your answers for *mistaeks* or sensitive information before sending this help request.
|