
[took me awile though

Did you really rename yourself deleted??
Minecraft Java Edition will run on Windows, Mac and Linux computers, and Mojang offers free server software, so there are many out there (I run my own Minecraft 1.12.2 "Creeper Pie" SMP server on a Raspberry Pi 3B+). One computer can also host a LAN game for other computers on the same network (although you'd probably need something more than a Pi as the host).
Heh heh, it is pretty cool, but dont expect groundbreaking results! If you want higher fps, download an 8x8 resource pack, it bumps up the fps slightly. Also turn down your render and enable optifine settings; fast math etc.RaspbianDK wrote: ↑Fri Nov 09, 2018 1:11 pmHi. Thanks for the guide. After some trouble i got it working! Its very cool.
Raspberry Pi are cheap ok minecraft playing devices, and they don't break the bank!
If only the Pi could run and play MC-PE... if only...HawaiianPi wrote: ↑Thu Nov 15, 2018 11:44 amDon't mean to be a wet blanket, but Minecraft 1.13.2 is still laggy on a proper gaming PC. It's not as bad as the initial 1.13 release, but I seriously doubt a Pi could run it (regardless of lwjgl3). Even the non-GUI server was too much for my little Pi (3B+), which is why the Creeper Pie server is still on 1.12.2 and I have a quad-core i7 with 8GB of RAM running my 1.13.2 server (and even that struggles at times).
MC-PE is what's shipped with Raspbian. The reason you don't recognise it as MC-PE is that it's the original early version hacked for the RPi by Mojang from 2012 with no updates ever. Microsoft dropped it when they bought out Mojang.
Microsoft just made me sadDougieLawson wrote: ↑Thu Nov 15, 2018 3:22 pmMC-PE is what's shipped with Raspbian. The reason you don't recognise it as MC-PE is that it's the original early version hacked for the RPi by Mojang from 2012 with no updates ever. Microsoft dropped it when they bought out Mojang.
There's nothing you can do to get over that.
Microsoft just made me sadDougieLawson wrote: ↑Thu Nov 15, 2018 3:22 pmMC-PE is what's shipped with Raspbian. The reason you don't recognise it as MC-PE is that it's the original early version hacked for the RPi by Mojang from 2012 with no updates ever. Microsoft dropped it when they bought out Mojang.
There's nothing you can do to get over that.
This is all great, but can you update the guide to 1.12.2?rpiMike wrote: ↑Wed Jun 21, 2017 2:30 pmHow to setup Full Minecraft 1.12.1 (with Optifine) on Raspberry Pi 3
Edit : 21/8/2017 Added video tutorial link
Edit : 20/8/2017 Updated to 1.12.1, Optifine 1.12.1 HD U C5
Please note :
Do this at your own risk.
If you have any doubts use a spare SD card.
The OpenGL drivers are experimental - they may not work with all screens. If unsure make sure you can ssh onto the Pi from another machine to turn back off.
Most likely to have success with OpenGL drivers if using Raspberry Pi 3 with heatsink, genuine 5.1 volt 2.5 amp power supply with heavy duty 2 core power cable, 1080p screen.
This should also work on the Pi2.
This tutorial was tested using Raspbian Stretch with Desktop - release date 2017-08-16
Video tutorial : https://www.youtube.com/watch?v=yTRYomiQMAY
1 If you need to update an existing version useIf you get any questions or prompts during raspbian update press ‘q’ ‘enter’Code: Select all
sudo apt-get update && sudo apt-get -y upgrade
2 In Menu\Preferences\Raspberry Pi Configuration :
System Tab - set Splash Screen to Disabled
Performance Tab - set GPU Memory to 64Mb
- if using Pi2 set overclock to High(1000MHz)
Reboot
3 Enable ‘GL Driver’ from a terminal windowThis will start the config utility. Select 'Advanced Options', then select 'GL Driver', then select 'Enable' (latest utility requires selection of 'GL (Full KMS)' ), then select 'Yes' to reboot and enable the driver.Code: Select all
sudo raspi-config
4 Install OpenAL Audio & glxgears demo5 Test driver using glxgearsCode: Select all
sudo apt-get -y install libalut0 libalut-dev && sudo apt-get -y install mesa-utils
This should run at about 60 fps.Code: Select all
glxgears
6 Download Minecraft7 Run launcher :Code: Select all
mkdir ~/Minecraft; mkdir ~/Minecraft/Natives; cd ~/Minecraft && wget https://s3.amazonaws.com/Minecraft.Download/launcher/Minecraft.jar
Login with Minecraft email and passwordCode: Select all
cd ~/Minecraft && java -jar Minecraft.jar
If your using a newer Minecraft.jar click 'edit profile' and select use release - 'release 1.12.1', then 'save profile'
Click Play to install game
You will then receive an error
Close launcher
8 Copy libraries9 Update lwjglCode: Select all
cd ~/Minecraft/Natives && wget https://www.dropbox.com/s/4oxcvz3ky7a3x6f/liblwjgl.so && wget https://www.dropbox.com/s/m0r8e01jg2og36z/libopenal.so
( based on Roger Allen's tutorial : http://rogerallen.github.io/jetson/2014 ... etson-tk1/ )Code: Select all
cd ~/.minecraft/libraries/org/lwjgl/lwjgl/lwjgl/2.9.4-nightly-20150209 && rm lwjgl-2.9.4-nightly-20150209.jar; wget https://www.dropbox.com/s/mj15sz3bub4dmr6/lwjgl-2.9.4-nightly-20150209.jar
10 Download “OptiFine 1.12.1 HD U C5” from http://optifine.net/downloads
11 Install OptifineClick install.Code: Select all
cd ~/Downloads && java -jar OptiFine_1.12.1_HD_U_C5.jar
Run launcherSelect the OptiFine profile and click play. The launcher will crashCode: Select all
cd ~/Minecraft && java -jar Minecraft.jar
12 Copy run script13 Edit runOptifine1_12_1.shCode: Select all
cd ~/Minecraft/ && wget https://www.dropbox.com/s/ca37tzxxc9hvsyd/runOptifine1_12_1.sh && sudo chmod +x runOptifine1_12_1.sh
Update MINECRAFT_LOGIN, MINECRAFT_USERNAME and MINECRAFT_PASSWORD to your own (may need "" for special characters)
14 Start Minecraft from terminal windowChange options in Minecraft to reduce render chunks to 2, this should avoid running out of memory.Code: Select all
./runOptifine1_12_1.sh
Turn everything down to low in the video settings (and turn on things like fast math)
Suggest running in the default sized window for best performance - full screen may crash.
https://youtu.be/2sREfySmRNU
Hopefully Minecraft should run
Some additional Pi tweeks :
Add an additional 16Mb :
Add the following to /boot/config.txtTest before and after using :Code: Select all
total_mem=1024 gpu_mem=64
If your running a 1080p screen drop the resolution down for a larger Minecraft window :Code: Select all
vcgencmd get_mem arm vcgencmd get_mem gpu
list modes :and do one-shot resolution setting at runtime with:Code: Select all
xrandr
If you want to attempt getting a new version of Minecraft working :Code: Select all
xrandr --output HDMI-1 --mode 1280x720
1 Install required version using java -jar Minecraft.jar - and allow to crash
2 Scroll up in terminal window and find last ../jre/bin/java command, scroll across and find ‘-cp ’, copy this path list until ‘ net.minecraft.launchwrapper.Launch’
3 Paste this text into the cp= in the run.sh script
Code: Select all
./runOptifine1_12_1.sh
Code: Select all
./runOptifine1_12_1.sh: 52: ./runOptifine1_12_1.sh: /usr/lib/jvm/jdk-8-oracle-arm32-vfp-hflt/jre/bin/java: not found
Code: Select all
Error: Could not find or load main class net.minecraft.launchwrapper.Launch