One-line PowerShell setup

circle-exclamation

@ChrisTaylorRocksarrow-up-right has made a PowerShell script to get the starter kit up and running with a single command. Go check it out herearrow-up-right!

Usage

PowerShell < 5.0:

PS> (new-object Net.WebClient).DownloadString('http://bit.ly/2z2QDJI') | iex; New-ScreepsTypeScriptSetup

PowerShell 5.0+:

PS> curl http://bit.ly/2z2QDJI | iex; New-ScreepsTypeScriptSetup

Last updated