Botspot / pi-apps

Raspberry Pi App Store for Open Source Projects
GNU General Public License v3.0
1.96k stars 202 forks source link

Minecraft Pi Server update #2437

Open kidmakesreal opened 1 year ago

kidmakesreal commented 1 year ago

What is the name of the app?

Minecraft Pi Server

(Optional) Where is the app hosted?

No response

About the app

a simple one click install mcpi server software

Upload file or Add PR Link

Minecraft Pi Server.zip

Confirmations

kidmakesreal commented 11 months ago

Ok sorry about that i think ive fixed it

theofficialgman commented 11 months ago
#make desktop shortcut
sudo mkdir -p /usr/share/applications || error "Could not make directory"
cd /usr/share/applications

sudo echo "[Desktop Entry]

/usr/share/applications is guaranteed to exist, there is no reason to make it. sudo echo, echo does not need to be run with sudo cd /usr/share/applications, it is better to tee directly to the full path of the file rather than rely on cd and then tee the file

github-actions[bot] commented 11 months ago

A zipfile was found in the body of your issue. The sha1sum of the zip was: 0e441d5596b8c1597dc430e0a440df026ee00471

Click to show contents preview `Minecraft Pi Server/install-32` ```bash #!/bin/bash version=2.4.8 #enable fuse enable_module fuse || exit 1 #create server folder sudo mkdir -p /usr/share/mcpi_server cd /usr/share/mcpi_server #download server sudo wget -O server.AppImage https://github.com/NoozAbooz/mcpi-reborn-extended/releases/download/${version}/minecraft-pi-reborn-server-${version}-armhf.AppImage || error "failed to download server" #make server executable sudo chmod +x server.AppImage #make desktop shortcut echo "[Desktop Entry] Name=Minecraft Pi Server Exec=/usr/share/mcpi_server/server.AppImage Comment=Multiplayer Server Terminal=true Icon=$(dirname "$0")/icon-64.png Type=Application Categories=Game; " | sudo tee /usr/share/applications/mcpi_server.desktop ``` `Minecraft Pi Server/website` ``` https://unschooledinventor.com/2023/08/diy-minecraft-pi-edition-server/ ``` `Minecraft Pi Server/description` ``` I recently installed Minecraft pi edtition on my raspberry pi and wanted to start a minecraft pi server but found little documentation and had to figure it out on my own. So i created this simple one click installer for pi-apps. Learn how to use this software here: https://unschooledinventor.com/2023/08/diy-minecraft-pi-edition-server/ Check out my YouTube channel: https://www.youtube.com/@oldspiceman2583 ``` `Minecraft Pi Server/install-64` ```bash #!/bin/bash version=2.4.8 #enable fuse enable_module fuse || exit 1 #create server folder sudo mkdir -p /usr/share/mcpi_server cd /usr/share/mcpi_server #download server sudo wget -O server.AppImage https://github.com/NoozAbooz/mcpi-reborn-extended/releases/download/${version}/minecraft-pi-reborn-server-${version}-arm64.AppImage || error "failed to download server" #make server executable sudo chmod +x server.AppImage #make desktop shortcut echo "[Desktop Entry] Name=Minecraft Pi Server Exec=/usr/share/mcpi_server/server.AppImage Comment=Multiplayer Server Terminal=true Icon=$(dirname "$0")/icon-64.png Type=Application Categories=Game; " | sudo tee /usr/share/applications/mcpi_server.desktop ``` `Minecraft Pi Server/credits` ``` https://github.com/NoozAbooz/ for providing the appimage ``` `Minecraft Pi Server/uninstall` ```bash #!/bin/bash #remove server app image sudo rm -rf /usr/share/mcpi_server/server.AppImage || error "Failed to remove server.appImage" #remove shortcut sudo rm -rf /usr/share/applications/mcpi_server.desktop || error "Failed to remove Minecraft Pi Server shortcut" #purge packages purge_packages || exit 1 ```
kidmakesreal commented 11 months ago

oh sorry its always the little things i miss

kidmakesreal commented 11 months ago

Thank you for helping me make my script better

kidmakesreal commented 11 months ago

I've fixed all the issues (that i know of) it should work now

kidmakesreal commented 11 months ago

Hello anybody there?

TheBrokenRail commented 3 months ago

In the upcoming MCPI-Reborn v3.0.0, the client and server builds have been unified. Running the dedicated server will only require running MCPI-Reborn with --server.

kidmakesreal commented 3 months ago

Nice this is a really cool project I’m glad people will now be able to make their own servers and play multiplayer