Skip to content

Instantly share code, notes, and snippets.

@yuyaprgrm
Last active October 15, 2021 10:48
Show Gist options
  • Select an option

  • Save yuyaprgrm/d1493bd3e4713f09aed2c70e428a5064 to your computer and use it in GitHub Desktop.

Select an option

Save yuyaprgrm/d1493bd3e4713f09aed2c70e428a5064 to your computer and use it in GitHub Desktop.
PocketMine-MP Install Script Windows
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