+ ListServers = @
+ @foreach (var server in Model.Where(s => s.Mod == item).OrderBy(s => s.MaximumPlayers))
+ {
+
+
Players: @(server.CurrentPlayers - 1)/@(server.MaximumPlayers - 1)
+
+ @if (server.IsStarted)
+ {
+
Game Type: @server.GameType
+
+ @foreach (var player in server.Players.Skip(1))
+ {
+
@player.Name: @player.Score
+ }
+
+ }
+ else
+ {
+ @if (server.CurrentPlayers < server.MaximumPlayers)
+ {
+
Command to join: @server.CommandLine
+ }
+ }
+
+
+ }
+
;
+}
+
+
+
+
+
+
+ Blood servers
+
+
+
+ The client EXE
+ Use this exe to connect: https://lerppu.net/wannabethesis/nblood/20200113-2073/
+
+ @b 1.21
+
+ Show @b version 1.21 servers
+ The below files must be in your Blood directory.
+
+ - BLOOD.INI
+ - BLOOD.RFF
+ - GUI.RFF
+ - SOUNDS.RFF
+ - SURFACE.DAT
+ - TILES000.ART-TILES017.ART
+ - VOXEL.DAT
+
+ @ListServers(@b)
+
+
+ @cp
+
+ Show @cp servers
+ The below files must be in your Blood directory.
+
+ - CP01-CP09.MAP
+ - CPART07.AR_ (Fresh Supply owners need to copy tiles007.ART from \addons\Cryptic Passage and rename it
+ - CPART15.AR_ (Fresh Supply owners need to copy tiles015.ART from \addons\Cryptic Passage and rename it
+ - CPBB01.MAP-CPBB04.MAP
+ - CPSL.MAP
+ - CRYPTIC.INI
+
+ Don't forget to send back the ferry every time at the end of the last map, otherwise you cannot go back if the boss kills you!
+ @ListServers(@cp)
+
+
+ @dw 1.6.10
+
+ Show @dw version 1.6.10 servers
+ The below files must be in your Blood directory.
+
+ - dw.ini
+ - DWBB1.MAP-DWBB3.MAP
+ - DWE1M1.MAP-DWE1M12.MAP
+ - DWE2M1.MAP-DWE2M12.MAP
+ - DWE3M1.MAP-DWE3M12.MAP
+
+ @ListServers(@dw)
+
+
+ @twoira 1.0.1
+
+ Show @twoira version 1.0.1 servers
+ @twoira
+ The below folder (TWOIRA) must be in your Blood directory, and inside that the other additional files.
+
+ - TWOIRA
+ -
+
+ - IRA01.MAP
+ - IRA02_A.MAP
+ - IRA02_B.MAP
+ - IRA03.MAP
+ - IRA04.MAP
+ - IRA05.MAP
+ - IRA06.MAP
+ - IRA07.MAP
+ - IRA08.MAP
+ - SURFACE.DAT
+ - TILES18.ART
+ - twoira.ini
+
+
+
+ @ListServers(twoira)
+
+ @fo 1.3
+
+ Show @fo version 1.3 servers
+ The below files must be in your Blood directory.
+
+ - fo.INI
+ - fo1m1.MAP-fo1m8.MAP
+
+ Not tested in co-op! But I hope it works! :)
+ @ListServers(@fo)
+
+
+
+ Do you think this page is ugly? You are right! If you want to make it better, PRs are welcomed (but please, don't use any JavaScript, thanks): https://github.com/CommonLoon102/NBloodServerSupervisor
+
+
diff --git a/WebInterface/appsettings.json b/WebInterface/appsettings.json
index e10280b..e708deb 100644
--- a/WebInterface/appsettings.json
+++ b/WebInterface/appsettings.json
@@ -7,6 +7,6 @@
}
},
"AllowedHosts": "*",
- "MaximumServers": 20,
+ "MaximumServers": 80,
"ApiKey": "CHANGEME"
}