Last active
October 15, 2021 10:48
-
-
Save yuyaprgrm/d1493bd3e4713f09aed2c70e428a5064 to your computer and use it in GitHub Desktop.
PocketMine-MP Install Script Windows
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| wget https://jenkins.pmmp.io/job/PHP-8.0-Aggregate/lastSuccessfulBuild/artifact/PHP-8.0-Windows-x64.zip -OutFile bin.zip | |
| Expand-Archive -Path bin.zip -DestinationPath ./ -Force | |
| Remove-Item bin.zip | |
| wget https://raw.githubusercontent.com/pmmp/PocketMine-MP/master/start.ps1 -OutFile start.ps1 | |
| $response = wget https://update.pmmp.io/api | |
| $info = ConvertFrom-Json $response.content | |
| wget $info.download_url -OutFile PocketMine-MP.phar | |
| echo 'Installation Successfully completed' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment