Compare commits
28 Commits
Author | SHA1 | Date | |
---|---|---|---|
7b34912f6f | |||
93dc43c788 | |||
64a31ec76e | |||
9c989d870d | |||
1fe2ea2a04 | |||
f49cdfa3e7 | |||
ff1e9ce628 | |||
f076c22605 | |||
7d6b7cb357 | |||
83acc66a3a | |||
d7c320e1ba | |||
2e09e32dd2 | |||
615624593d | |||
9d44b54617 | |||
2ef51148c4 | |||
3040953b6e | |||
88d838d981 | |||
a0988516d4 | |||
78410cfa4b | |||
7da7286126 | |||
f63f430a1f | |||
62058fbd0c | |||
122896699c | |||
8186bfe974 | |||
a2574690f1 | |||
5045611a6b | |||
9e2e1933da | |||
0c0bcb915f |
110
.gitea/workflows/pages-deploy.yaml
Normal file
@ -0,0 +1,110 @@
|
||||
name: Deploy Jekyll site to Pages
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
# Runs every 3 hours to update pack and game version
|
||||
schedule:
|
||||
- cron: '0 */12 * * *'
|
||||
|
||||
# Allows you to run this workflow manually from the Actions tab
|
||||
workflow_dispatch:
|
||||
|
||||
# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
|
||||
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
|
||||
concurrency:
|
||||
group: "pages"
|
||||
cancel-in-progress: true
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-22.04
|
||||
env:
|
||||
RUBY_VERSION: "3.3.5"
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
- name: Install Dependencies
|
||||
run: |
|
||||
sudo apt-get update
|
||||
sudo apt-get install -y jq curl sed imagemagick wget tar build-essential zlib1g-dev gpg libmagickwand-dev webp
|
||||
which cwebp
|
||||
- name: Fetch Latest Modrinth Version
|
||||
id: fetch_version
|
||||
run: |
|
||||
# Modrinth API Call
|
||||
response=$(curl -s -H "Authorization: Bearer $MODRINTH_TOKEN" https://api.modrinth.com/v2/project/illuvia-prime-project/version)
|
||||
|
||||
# Extract latest release version
|
||||
latest_release=$(echo "$response" | jq -cr '[.[] | select(.status == "listed" and .version_type == "release")] | sort_by(.date_published) | last')
|
||||
|
||||
if [ -z "$latest_release" ]; then
|
||||
echo "No release version found"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
# Extract version_number and game_versions
|
||||
version_number=$(echo "$latest_release" | jq -r '.version_number')
|
||||
game_version=$(echo "$latest_release" | jq -r '.game_versions[0]')
|
||||
current_date=$(date +"%d.%m.%Y %H:%m")
|
||||
|
||||
echo "Latest version: $version_number (Minecraft $game_version) on $current_date"
|
||||
|
||||
# Output for next steps
|
||||
echo "PACK_VERSION=$version_number" >> $GITHUB_ENV
|
||||
echo "MINECRAFT_VERSION=$game_version" >> $GITHUB_ENV
|
||||
echo "CURRENT_DATE=$current_date" >> $GITHUB_ENV
|
||||
- name: Update _config.yml
|
||||
run: |
|
||||
# Replace placeholders
|
||||
sed -i "s/PACK_VERSION/$PACK_VERSION/g" _config.yml
|
||||
sed -i "s/MINECRAFT_VERSION/$MINECRAFT_VERSION/g" _config.yml
|
||||
sed -i "s/PACK_VERSION/$PACK_VERSION/g" assets/launcher_motd.txt
|
||||
sed -i "s/CURRENT_DATE/$CURRENT_DATE/g" assets/launcher_motd.txt
|
||||
- name: Convert images to WebP
|
||||
run: |
|
||||
DIRECTORY=assets/img
|
||||
OUTPUT_DIRECTORY=assets/img
|
||||
mkdir -p $OUTPUT_DIRECTORY
|
||||
|
||||
for file in $DIRECTORY/*.{jpg,jpeg,png}; do
|
||||
if [ -f "$file" ]; then
|
||||
filename=$(basename -- "$file")
|
||||
name="${filename%.*}"
|
||||
cwebp "$file" -o "$OUTPUT_DIRECTORY/$name.webp"
|
||||
fi
|
||||
done
|
||||
- name: checkout pages
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
ref: "pages"
|
||||
path: "pages"
|
||||
- name: Setup Ruby
|
||||
run: |
|
||||
apt-get update
|
||||
apt-get install curl wget tar build-essential zlib1g-dev gpg -y
|
||||
curl -sSL https://rvm.io/mpapis.asc | gpg --import -
|
||||
curl -sSL https://rvm.io/pkuczynski.asc | gpg --import -
|
||||
curl -sSL https://get.rvm.io | bash -s stable
|
||||
source /etc/profile.d/rvm.sh
|
||||
rvm mount -r https://git.morlana.online/api/packages/Morlana/generic/ruby-ubuntu-22.04-aarch64/$RUBY_VERSION/ruby-$RUBY_VERSION.tar.bz2
|
||||
rvm use $RUBY_VERSION && ruby -v && gem -v
|
||||
gem install bundler jekyll webrick
|
||||
- name: Build with Jekyll
|
||||
run: |
|
||||
source /etc/profile.d/rvm.sh
|
||||
rvm use $RUBY_VERSION && ruby -v && gem -v
|
||||
bundle install
|
||||
bundle exec jekyll build --destination pages
|
||||
env:
|
||||
JEKYLL_ENV: production
|
||||
- name: push pages
|
||||
run: |
|
||||
cd pages
|
||||
cp ../.domains ./.domains
|
||||
git config user.name "${{ gitea.actor }}"
|
||||
git config user.email ""${{ gitea.actor }}"@noreply.git.morlana.online"
|
||||
git add .
|
||||
git commit -m "jekyll build from Action ${GITHUB_SHA}"
|
||||
git push
|
4
Gemfile
@ -5,3 +5,7 @@ gem "jekyll", "~> 4.3.4" # installed by `gem jekyll`
|
||||
|
||||
gem "just-the-docs", "0.10.0" # pinned to the current release
|
||||
# gem "just-the-docs" # always download the latest release
|
||||
|
||||
gem 'jekyll-default-layout'
|
||||
|
||||
gem 'jekyll-webp'
|
||||
|
42
Gemfile.lock
@ -3,20 +3,24 @@ GEM
|
||||
specs:
|
||||
addressable (2.8.7)
|
||||
public_suffix (>= 2.0.2, < 7.0)
|
||||
bigdecimal (3.1.8)
|
||||
bigdecimal (3.1.9)
|
||||
colorator (1.1.0)
|
||||
concurrent-ruby (1.3.4)
|
||||
em-websocket (0.5.3)
|
||||
eventmachine (>= 0.12.9)
|
||||
http_parser.rb (~> 0)
|
||||
eventmachine (1.2.7)
|
||||
ffi (1.17.0-arm64-darwin)
|
||||
ffi (1.17.0-x86_64-linux-gnu)
|
||||
ffi (1.17.1-arm64-darwin)
|
||||
ffi (1.17.1-x86_64-darwin)
|
||||
ffi (1.17.1-x86_64-linux-gnu)
|
||||
forwardable-extended (2.6.0)
|
||||
google-protobuf (4.28.1-arm64-darwin)
|
||||
google-protobuf (4.29.2-arm64-darwin)
|
||||
bigdecimal
|
||||
rake (>= 13)
|
||||
google-protobuf (4.28.1-x86_64-linux)
|
||||
google-protobuf (4.29.2-x86_64-darwin)
|
||||
bigdecimal
|
||||
rake (>= 13)
|
||||
google-protobuf (4.29.2-x86_64-linux)
|
||||
bigdecimal
|
||||
rake (>= 13)
|
||||
http_parser.rb (0.8.0)
|
||||
@ -38,6 +42,8 @@ GEM
|
||||
safe_yaml (~> 1.0)
|
||||
terminal-table (>= 1.8, < 4.0)
|
||||
webrick (~> 1.7)
|
||||
jekyll-default-layout (0.1.5)
|
||||
jekyll (>= 3.0, < 5.0)
|
||||
jekyll-include-cache (0.2.1)
|
||||
jekyll (>= 3.7, < 5.0)
|
||||
jekyll-sass-converter (3.0.0)
|
||||
@ -46,13 +52,14 @@ GEM
|
||||
jekyll (>= 3.8, < 5.0)
|
||||
jekyll-watch (2.2.1)
|
||||
listen (~> 3.0)
|
||||
jekyll-webp (1.0.0)
|
||||
just-the-docs (0.10.0)
|
||||
jekyll (>= 3.8.5)
|
||||
jekyll-include-cache
|
||||
jekyll-seo-tag (>= 2.0)
|
||||
rake (>= 12.3.1)
|
||||
kramdown (2.4.0)
|
||||
rexml
|
||||
kramdown (2.5.1)
|
||||
rexml (>= 3.3.9)
|
||||
kramdown-parser-gfm (1.1.0)
|
||||
kramdown (~> 2.0)
|
||||
liquid (4.0.4)
|
||||
@ -67,25 +74,30 @@ GEM
|
||||
rb-fsevent (0.11.2)
|
||||
rb-inotify (0.11.1)
|
||||
ffi (~> 1.0)
|
||||
rexml (3.3.7)
|
||||
rouge (4.3.0)
|
||||
rexml (3.4.0)
|
||||
rouge (4.5.1)
|
||||
safe_yaml (1.0.5)
|
||||
sass-embedded (1.78.0-arm64-darwin)
|
||||
google-protobuf (~> 4.27)
|
||||
sass-embedded (1.78.0-x86_64-linux-gnu)
|
||||
google-protobuf (~> 4.27)
|
||||
sass-embedded (1.83.0-arm64-darwin)
|
||||
google-protobuf (~> 4.28)
|
||||
sass-embedded (1.83.0-x86_64-darwin)
|
||||
google-protobuf (~> 4.28)
|
||||
sass-embedded (1.83.0-x86_64-linux-gnu)
|
||||
google-protobuf (~> 4.28)
|
||||
terminal-table (3.0.2)
|
||||
unicode-display_width (>= 1.1.1, < 3)
|
||||
unicode-display_width (2.6.0)
|
||||
webrick (1.8.1)
|
||||
webrick (1.9.1)
|
||||
|
||||
PLATFORMS
|
||||
arm64-darwin
|
||||
x86_64-darwin-23
|
||||
x86_64-linux-gnu
|
||||
|
||||
DEPENDENCIES
|
||||
jekyll (~> 4.3.4)
|
||||
jekyll-default-layout
|
||||
jekyll-webp
|
||||
just-the-docs (= 0.10.0)
|
||||
|
||||
BUNDLED WITH
|
||||
2.5.9
|
||||
2.6.2
|
||||
|
76
_config.yml
@ -1,11 +1,81 @@
|
||||
title: Illuvia Prime
|
||||
description: >-
|
||||
Welcome to the official homepage and documentation for Illuvia Prime, our modded Minecraft server. Explore a unique blend of technical and magical mods that enhance your gameplay experience.
|
||||
Willkommen bei der offiziellen Homepage und Dokumentation für den Illuvia Prime Minecraft Server. Erkunde eine einzigartige Welt voller Magie und technischer Möglichkeiten.
|
||||
theme: just-the-docs
|
||||
|
||||
content:
|
||||
pack_version: PACK_VERSION
|
||||
minecraft_version: MINECRAFT_VERSION
|
||||
|
||||
baseurl: "/"
|
||||
url: "https://illuvia.world"
|
||||
show_downloads: false
|
||||
|
||||
aux_links:
|
||||
Template Repository: https://github.com/just-the-docs/just-the-docs-template
|
||||
# Color scheme currently only supports "dark", "light"/nil (default), or a custom scheme that you define
|
||||
color_scheme: dark
|
||||
|
||||
callouts_level: quiet # or loud
|
||||
callouts:
|
||||
highlight:
|
||||
color: yellow
|
||||
info:
|
||||
title: Info
|
||||
color: blue
|
||||
new:
|
||||
title: Neu
|
||||
color: green
|
||||
note:
|
||||
title: Notiz
|
||||
color: purple
|
||||
warning:
|
||||
title: Warnung
|
||||
color: red
|
||||
|
||||
nav_external_links:
|
||||
- title: Impressum
|
||||
url: https://legal.thephoenixdi.vision
|
||||
hide_icon: false
|
||||
opens_in_new_tab: true
|
||||
|
||||
plugins:
|
||||
- jekyll-default-layout
|
||||
- jekyll-webp
|
||||
|
||||
############################################################
|
||||
# Site configuration for the WebP Generator Plugin
|
||||
# The values here represent the defaults if nothing is set
|
||||
webp:
|
||||
enabled: false
|
||||
|
||||
# The quality of the webp conversion 0 to 100 (where 100 is least lossy)
|
||||
quality: 75
|
||||
|
||||
# List of directories containing images to optimize, nested directories will only be checked if `nested` is true
|
||||
# By default the generator will search for a folder called `/img` under the site root and process all jpg, png and tiff image files found there.
|
||||
img_dir: ["/assets/img"]
|
||||
|
||||
# Whether to search in nested directories or not
|
||||
nested: false
|
||||
|
||||
# add ".gif" to the format list to generate webp for animated gifs as well
|
||||
formats: [".jpeg", ".jpg", ".png", ".tiff"]
|
||||
|
||||
# File extensions for animated gif files
|
||||
gifs: [".gif"]
|
||||
|
||||
# Set to true to always regenerate existing webp files
|
||||
regenerate: false
|
||||
|
||||
# Local path to the WebP utilities to use (relative or absolute)
|
||||
# Omit or leave as nil to use the utilities shipped with the gem, override only to use your local install
|
||||
# Eg : "/usr/local/bin/cwebp"
|
||||
webp_path: "/usr/bin/cwebp"
|
||||
|
||||
# List of files or directories to exclude
|
||||
# e.g. custom or hand generated webp conversion files
|
||||
exclude: []
|
||||
|
||||
# append '.webp' to filename after original extension rather than replacing it.
|
||||
# Default transforms `image.png` to `image.webp`, while changing to true transforms `image.png` to `image.png.webp`
|
||||
append_ext: false
|
||||
############################################################
|
||||
|
5
_layouts/home.html
Normal file
@ -0,0 +1,5 @@
|
||||
---
|
||||
layout: default
|
||||
---
|
||||
|
||||
{{ content }}
|
5
_layouts/page.html
Normal file
@ -0,0 +1,5 @@
|
||||
---
|
||||
layout: default
|
||||
---
|
||||
|
||||
{{ content }}
|
0
assets/img/add_favicon
Normal file
BIN
assets/img/download_btn.jpg
Normal file
After Width: | Height: | Size: 16 KiB |
BIN
assets/img/download_via_modrinth.jpg
Normal file
After Width: | Height: | Size: 64 KiB |
BIN
assets/img/memory_rec.jpg
Normal file
After Width: | Height: | Size: 73 KiB |
BIN
assets/img/minecraft_backpack_slot.png
Normal file
After Width: | Height: | Size: 222 KiB |
BIN
assets/img/minecraft_controls.png
Normal file
After Width: | Height: | Size: 2.5 MiB |
BIN
assets/img/minecraft_game_menu.png
Normal file
After Width: | Height: | Size: 3.1 MiB |
BIN
assets/img/minecraft_keybindings_backpack.png
Normal file
After Width: | Height: | Size: 2.1 MiB |
BIN
assets/img/minecraft_keybindings_backpack_keybind.png
Normal file
After Width: | Height: | Size: 2.4 MiB |
BIN
assets/img/minecraft_open_accessoire.png
Normal file
After Width: | Height: | Size: 363 KiB |
BIN
assets/img/minecraft_options.png
Normal file
After Width: | Height: | Size: 2.5 MiB |
4
assets/launcher_motd.txt
Normal file
@ -0,0 +1,4 @@
|
||||
Welcome to Illuvia Prime Modpack!
|
||||
Latest version is PACK_VERSION
|
||||
Make sure to join the Discord Server!
|
||||
Text Last Updated CURRENT_DATE!
|
15
docs/faq/index.md
Normal file
@ -0,0 +1,15 @@
|
||||
---
|
||||
title: FAQ
|
||||
layout: page
|
||||
has_toc: false
|
||||
---
|
||||
|
||||
# FAQ Seiten
|
||||
|
||||
## Modpack
|
||||
|
||||
- [Backpack per Shortcut öffnen]({% link docs/faq/open-backpack-by-keybinding.md %})
|
||||
|
||||
## Server
|
||||
|
||||
- [Wie lautet die Server IP?]({% link docs/faq/what-is-the-server-ip.md %})
|
29
docs/faq/open-backpack-by-keybinding.md
Normal file
@ -0,0 +1,29 @@
|
||||
---
|
||||
title: Backpack öfnnen mit Keybinding
|
||||
parent: FAQ
|
||||
layout: page
|
||||
---
|
||||
|
||||
# Backpack per Shortcut öffnen
|
||||
|
||||
Man kann sein Backpack in einen Accessoire Slot legen um so wertvollen Platz im Inventar zu sparen.
|
||||
Damit man es dann öffnen kann muss man allerdings ein Keybinding / Shortcut festlegen.
|
||||
|
||||
## Keybinding / Shortcut festlegen
|
||||
|
||||
1. Drücke die `ESC`-Taste und öffne die Options (de: Optionen)
|
||||

|
||||
2. In den Optionen gehe in die Controls (de: Steuerung)
|
||||

|
||||
3. Suche per Suchleiste nach `backpack`, dort erscheinen drei Optionen. `Open Backpack` ist auf `B` festgelegt, welches allerdings mehrfach belegt wurde durch die vielen Mods.
|
||||

|
||||
4. Klicke dort auf das `B`, anschließend kannst du eine Taste drücken mit der du dein Backpack öffnen willst, diese darf allerdings nicht schon belegt sein. Wir empfehlen `^`, welches du auf deiner Tastatur oben neben der `1` findest.
|
||||

|
||||
5. Danach kannst du mit `Done` speichern und das Game Menü verlassen
|
||||
|
||||
## Backpack in den Accessoire Slot legen
|
||||
|
||||
1. Öffne dein Inventar (Default: `E`)
|
||||

|
||||
2. Dort musst du in den oberen drei Kategorien sein, dann ist der unterste Slot der Slot für dein Backpack. Du kannst diesen aber auch am Rucksack erkennen.
|
||||

|
9
docs/faq/what-is-the-server-ip.md
Normal file
@ -0,0 +1,9 @@
|
||||
---
|
||||
title: Wie lautet die Server IP?
|
||||
parent: FAQ
|
||||
layout: page
|
||||
---
|
||||
|
||||
# Wie lautet die Server IP?
|
||||
|
||||
`join.illuvia.world`
|
31
docs/modpack/index.md
Normal file
@ -0,0 +1,31 @@
|
||||
---
|
||||
title: Modpack
|
||||
nav_order: 2
|
||||
layout: page
|
||||
---
|
||||
|
||||
# Illuvia Prime Modpack
|
||||
|
||||
{: .highlight }
|
||||

|
||||
|
||||
{: .note }
|
||||
Unser Modpack ist nun über Modrinth erhältlich. Bitte stellt euch darauf ein, dass der Support für `Technical Electrical: Secret Schemes` damit nur noch vorübergehend ist.
|
||||
Wir werden vorher nochmal über Discord und unsere Homepage über das Supportende informieren!
|
||||
|
||||
## Wieso das Illuvia Prime Modpack?
|
||||
|
||||
Wir haben den Server mit Technical Electrical gestartet. Aktuell unterstützen wir dieses auch noch allerdings haben wir beim Spielen auf dem Server so einige Ideen gehabt, wie man das Spielerlebnis noch verbessern könnte.
|
||||
So haben wir viele weitere Mods gefunden und in unseren lokalen Instanzen hinzugefügt. Nun möchten wir euch auch davon profitieren lassen!
|
||||
|
||||
Unter anderem haben wir einen eigenen Server Voice Chat integriert, der unabhängig von Discord, Teamspeak und Co. funktioniert. So ist es möglich auch mal miteinander zu quatschen (zum Beispiel zum Handeln) selbst wenn man sich in unterschiedlichen Discord Channels oder Servern befindet.
|
||||
|
||||
## Installtion
|
||||
|
||||
1. Installiere dir den [Modrinth Launcher](https://modrinth.com/app)
|
||||
2. Gehe in die `Settings` unter `Default instance options` und erhöhere den zugewiesenen RAM. Empfohlen ist ~8000 bei 16GB RAM und ~12000 bei 32GB und höher
|
||||

|
||||
3. Downloade das [Illuvia Prime Pack](modrinth://mod/illuvia-prime-project)
|
||||

|
||||

|
||||
4. Und nach dem Download kann das Modpack gespielt werden. Viel Spaß! ;)
|
155
docs/modpack/modliste.md
Normal file
@ -0,0 +1,155 @@
|
||||
---
|
||||
title: Modliste
|
||||
parent: Modpack
|
||||
layout: page
|
||||
---
|
||||
|
||||
# Installierte Mods
|
||||
|
||||
- [X] AI Improvements
|
||||
- [X] AmbientSounds
|
||||
- [X] Applied Mekanistics
|
||||
- [X] BadOptimizations
|
||||
- [X] BetterF
|
||||
- [X] BetterThirdPerson
|
||||
- [X] Controlling
|
||||
- [X] Corgilib
|
||||
- [X] CraterLib
|
||||
- [X] CreativeCore
|
||||
- [X] Cucumber
|
||||
- [X] CustomWindowTitle
|
||||
- [X] DistantHorizons
|
||||
- [X] Emojiful
|
||||
- [X] ExtremeReactors
|
||||
- [X] GPUTape
|
||||
- [X] GlitchCore
|
||||
- [X] ImmediatelyFast
|
||||
- [X] ImmersiveEngineering
|
||||
- [X] Jade
|
||||
- [X] KryptonFoxified
|
||||
- [X] Ksyxis
|
||||
- [X] LittleFrames
|
||||
- [X] MRU
|
||||
- [X] Mekanism
|
||||
- [X] MekanismAdditions
|
||||
- [X] MekanismGenerators
|
||||
- [X] MekanismTools
|
||||
- [X] Modern Dynamics
|
||||
- [X] Modern Industrialization
|
||||
- [X] MouseTweaks
|
||||
- [X] MysticalAgradditions
|
||||
- [X] MysticalAgriculture
|
||||
- [X] NoChatReports
|
||||
- [X] Not Enough Recipe Book
|
||||
- [X] OctoLib
|
||||
- [X] Oh The Biomes Weve Gone
|
||||
- [X] Oh The Trees Youll Grow
|
||||
- [X] OreExcavation
|
||||
- [X] Patchouli
|
||||
- [X] Powah
|
||||
- [X] Searchables
|
||||
- [X] SimpleRPC Universal
|
||||
- [X] SmartBrainLib
|
||||
- [X] Sounds
|
||||
- [X] Statues
|
||||
- [X] TerraBlender
|
||||
- [X] The Undergarden
|
||||
- [X] Totemic
|
||||
- [X] TravelersTitles
|
||||
- [X] Xaeros Minimap
|
||||
- [X] XaerosWorldMap
|
||||
- [X] YetAnotherConfigLib
|
||||
- [X] YungsApi
|
||||
- [X] ZeroCore
|
||||
- [X] SecurityCraft
|
||||
- [X] accessories cclayer
|
||||
- [X] accessories
|
||||
- [X] actuallyadditions
|
||||
- [X] aewtlib
|
||||
- [X] almostunified
|
||||
- [X] appleskin
|
||||
- [X] appliedenergistics
|
||||
- [X] architectury
|
||||
- [X] ars additions
|
||||
- [X] ars ocultas
|
||||
- [X] athena
|
||||
- [X] azurelib neo
|
||||
- [X] balm
|
||||
- [X] better modlist
|
||||
- [X] cme
|
||||
- [X] cc tweaked
|
||||
- [X] chisel
|
||||
- [X] cloth config
|
||||
- [X] collective
|
||||
- [X] drippyloadingscreen
|
||||
- [X] elevatorid
|
||||
- [X] emi
|
||||
- [X] enderio
|
||||
- [X] entityculling
|
||||
- [X] fancymenu
|
||||
- [X] ferritecore
|
||||
- [X] freecam
|
||||
- [X] friendsandfoes
|
||||
- [X] functionalstorage
|
||||
- [X] geckolib
|
||||
- [X] handcrafted
|
||||
- [X] idle boost
|
||||
- [X] industrialforegoing
|
||||
- [X] iris
|
||||
- [X] ironchest
|
||||
- [X] jamlib
|
||||
- [X] jei
|
||||
- [X] konkrete
|
||||
- [X] kotlinfor
|
||||
- [X] libIPN
|
||||
- [X] lootr
|
||||
- [X] melody
|
||||
- [X] mffs
|
||||
- [X] modernfix
|
||||
- [X] modonomicon
|
||||
- [X] moreculling
|
||||
- [X] notenoughanimations
|
||||
- [X] occultism
|
||||
- [X] open parties and claims
|
||||
- [X] owo lib
|
||||
- [X] packetfixer
|
||||
- [X] PlasmoVoice
|
||||
- [X] pneumaticcraft repressurized
|
||||
- [X] polyeng
|
||||
- [X] polylib
|
||||
- [X] polymorph
|
||||
- [X] prefab
|
||||
- [X] radium
|
||||
- [X] reeses sodium options
|
||||
- [X] relics
|
||||
- [X] resourcefulconfig
|
||||
- [X] resourcefullib
|
||||
- [X] servercore
|
||||
- [X] shrink
|
||||
- [X] skinlayersd
|
||||
- [X] sodium
|
||||
- [X] sound physics remastered
|
||||
- [X] stellaris
|
||||
- [X] tectonic
|
||||
- [X] the bumblezone
|
||||
- [X] theurgy
|
||||
- [X] thingamajigs
|
||||
- [X] titanium
|
||||
- [X] toms trading network
|
||||
- [X] travelersbackpack
|
||||
- [X] utility belt
|
||||
- [X] watermedia
|
||||
- [X] waveycapes
|
||||
- [X] waystones
|
||||
|
||||
# Installierte Resourcepacks
|
||||
|
||||
- [X] Faithful 64x
|
||||
- [X] 3D Crops Revamped
|
||||
- [X] PresenceFootsteps: Remastered Sounds
|
||||
- [X] Visual Traveler's Title Biomes Addon
|
||||
|
||||
# Installierte Shader
|
||||
|
||||
- [X] Solas Shader
|
||||
- [X] Complementary Shaders - Reimagined
|
BIN
files/Illuvia_Prime_Server_fertig.png
Normal file
After Width: | Height: | Size: 8.1 KiB |
BIN
files/Illuvia_Prime_transparent.png
Normal file
After Width: | Height: | Size: 8.1 KiB |
50
index.md
@ -1,35 +1,47 @@
|
||||
---
|
||||
title: Home
|
||||
layout: home
|
||||
nav_order: 1
|
||||
description: "Willkommen bei der offiziellen Homepage und Dokumentation für den Illuvia Prime Minecraft Server. Erkunde eine einzigartige Welt voller Magie und technischer Möglichkeiten."
|
||||
permalink: /
|
||||
---
|
||||
|
||||
This is a *bare-minimum* template to create a Jekyll site that uses the [Just the Docs] theme. You can easily set the created site to be published on [GitHub Pages] – the [README] file explains how to do that, along with other details.
|
||||
# Illuvia Prime Homepage
|
||||
{: .fs-9 }
|
||||
|
||||
If [Jekyll] is installed on your computer, you can also build and preview the created site *locally*. This lets you test changes before committing them, and avoids waiting for GitHub Pages.[^1] And you will be able to deploy your local build to a different platform than GitHub Pages.
|
||||
Willkommen bei der offiziellen Homepage und Dokumentation für den Illuvia Prime Minecraft Server. Erkunde eine einzigartige Welt voller Magie und technischer Möglichkeiten.
|
||||
{: .fs-6 .fw-300 }
|
||||
|
||||
More specifically, the created site:
|
||||
{: .info }
|
||||

|
||||

|
||||

|
||||
|
||||
- uses a gem-based approach, i.e. uses a `Gemfile` and loads the `just-the-docs` gem
|
||||
- uses the [GitHub Pages / Actions workflow] to build and publish the site on GitHub Pages
|
||||
[Get started now](#getting-started){: .btn .btn-primary .fs-5 .mb-4 .mb-md-0 .mr-2 }
|
||||
[Download Modpack](https://modrinth.com/modpack/illuvia-prime-project#download){: .btn .fs-5 .mb-4 .mb-md-0 }
|
||||
|
||||
Other than that, you're free to customize sites that you create with this template, however you like. You can easily change the versions of `just-the-docs` and Jekyll it uses, as well as adding further plugins.
|
||||
---
|
||||
|
||||
[Browse our documentation][Just the Docs] to learn more about how to use this theme.
|
||||
{: .highlight }
|
||||
🎮 __Game:__ <br>
|
||||
🔃 __Mod Loader:__ <br>
|
||||
📦 __Modpack:__ 
|
||||
|
||||
To get started with creating a site, simply:
|
||||
## Getting started
|
||||
|
||||
1. click "[use this template]" to create a GitHub repository
|
||||
2. go to Settings > Pages > Build and deployment > Source, and select GitHub Actions
|
||||
{: .info }
|
||||
Du musst von einem Spieler bei der Serverleitung (SitirioTV | Justin, Kosmos | Florian) empfohlen werden.<br>
|
||||
Die Serverleitung gibt dann dem Spieler, der dich empfohlen hat bescheid ob du aufgenommen wirst oder nicht.
|
||||
|
||||
If you want to maintain your docs in the `docs` directory of an existing project repo, see [Hosting your docs from an existing project repo](https://github.com/just-the-docs/just-the-docs-template/blob/main/README.md#hosting-your-docs-from-an-existing-project-repo) in the template README.
|
||||
### Modpack Installation
|
||||
|
||||
----
|
||||
1. Downloade und installiere [Modrinth](https://modrinth.com/app) als Launcher
|
||||
2. Starte den Launcher und logge dich mit deinem Minecraft / Microsoft Account ein
|
||||
3. Installiere das Illuvia Prime Modpack wie [hier]({% link docs/modpack/index.md %}) beschrieben
|
||||
|
||||
[^1]: [It can take up to 10 minutes for changes to your site to publish after you push the changes to GitHub](https://docs.github.com/en/pages/setting-up-a-github-pages-site-with-jekyll/creating-a-github-pages-site-with-jekyll#creating-your-site).
|
||||
### Server beitreten
|
||||
|
||||
[Just the Docs]: https://just-the-docs.github.io/just-the-docs/
|
||||
[GitHub Pages]: https://docs.github.com/en/pages
|
||||
[README]: https://github.com/just-the-docs/just-the-docs-template/blob/main/README.md
|
||||
[Jekyll]: https://jekyllrb.com
|
||||
[GitHub Pages / Actions workflow]: https://github.blog/changelog/2022-07-27-github-pages-custom-github-actions-workflows-beta/
|
||||
[use this template]: https://github.com/just-the-docs/just-the-docs-template/generate
|
||||
1. Bitte joine einmal dem Server. Es wird eine Meldung kommen, dass du nicht auf der Whitelist stehst.
|
||||
2. Teile der Serverleitung über Discord deinen Minecraft Benutzernamen mit, damit wir dich auf Whitelist setzen können.
|
||||
3. Warte auf eine Antwort und joine erneut sobald du aufgenommen wurdest.
|
||||
4. Viel Spaß! 🥳
|
||||
|