Skip to content

Commit

Permalink
3.7 release
Browse files Browse the repository at this point in the history
  • Loading branch information
GlennnM committed Aug 27, 2024
1 parent 9c143ce commit 6675bad
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 7 deletions.
3 changes: 3 additions & 0 deletions .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# These are supported funding model platforms

ko_fi: glenn_m
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ There are different methods of running the PowerShell script. The methods are as
2) This will allow the script to run without having to do the above steps but Powershell will ask if you're sure you want to run this script.


<br>That's it! Next time you start BTD Battles, BTD5, SAS3, Countersnipe, or SAS4 on the archive they will be modded to link to the private server, allowing you to play.<br><b>Enjoy!!</b><br>
<br>That's it! Next time you start BTD Battles, BTD5, SAS3, Countersnipe, or SAS4 on the archive they will be modded to link to the private server, allowing you to play online with other players.<br><b>Enjoy!!</b><br>
<br>Since the games are fairly inactive, you can play "solo" multiplayer with the following methods:<br>
join code 400 in SAS4 to play a boosted game with bots(works in any mode)<br>
<a href = https://github.com/Kinnay/Bloons-Terminator>bots</a> for battles flash(will require some code changes to work)<br><br>
Expand Down Expand Up @@ -117,4 +117,4 @@ Some useful tools for analyzing client and server behavior are <a href=https://g
Contact<br>
</h1>
If you have questions or concerns feel free to message me on discord: glenn_m<br>
or join: <a href=https://discord.gg/VVGuvq7kAv>https://discord.gg/VVGuvq7kAv</a><br>
or join: <a href=https://discord.gg/VVGuvq7kAv>https://discord.gg/VVGuvq7kAv</a><br><br>
10 changes: 5 additions & 5 deletions client/FlashClient.ps1
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
"Checking for Ninja Kiwi Archive..."
if ($IsWindows -or $ENV:OS) {
$cache = $env:APPDATA + '\Ninja Kiwi Archive\Cache'
$zippath = 'https://github.com/GlennnM/FlashPrivateServer/releases/download/v3.6.1/cache_windows.zip'
$zippath = 'https://github.com/GlennnM/FlashPrivateServer/releases/download/v3.7/cache_windows.zip'
$filename = 'cache_windows.zip'
$FULL_SIZE = 45228344
$FULL_SIZE = 45361249
} else {
$cache = $HOME + '/Library/Application Support/Ninja Kiwi Archive/Cache'
$zippath = 'https://github.com/GlennnM/FlashPrivateServer/releases/download/v3.6.1/cache_osx.zip'
$zippath = 'https://github.com/GlennnM/FlashPrivateServer/releases/download/v3.7/cache_osx.zip'
$filename = 'cache_osx.zip'
$FULL_SIZE = 45045216
$FULL_SIZE = 45178267
}
[int]$FULL_MB = $FULL_SIZE / 0.1MB
$FULL_MB_FLOAT = $FULL_MB / 10
Expand Down Expand Up @@ -36,7 +36,7 @@ if (Test-Path -Path $cache) {
"Archive cache cleared!"
try {
"Checking version..."
$N.DownloadFile('https://github.com/GlennnM/FlashPrivateServer/raw/main/v3.6.1.txt',$cache + '/test.txt')
$N.DownloadFile('https://github.com/GlennnM/FlashPrivateServer/raw/main/v3.7.txt',$cache + '/test.txt')
Remove-Item $cache'/test.txt'
"Version check successful!"
} catch {
Expand Down
File renamed without changes.

0 comments on commit 6675bad

Please sign in to comment.