diff --git a/IW4MAdmin.sln b/IW4MAdmin.sln index 541d851e..4f5e43c3 100644 --- a/IW4MAdmin.sln +++ b/IW4MAdmin.sln @@ -53,7 +53,7 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "StatsWeb", "Plugins\Web\Sta EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "AutomessageFeed", "Plugins\AutomessageFeed\AutomessageFeed.csproj", "{F5815359-CFC7-44B4-9A3B-C04BACAD5836}" EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "LiveRadar", "Plugins\LiveRadar\LiveRadar.csproj", "{00A1FED2-2254-4AF7-A5DB-2357FA7C88CD}" +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "LiveRadar", "Plugins\LiveRadar\LiveRadar.csproj", "{00A1FED2-2254-4AF7-A5DB-2357FA7C88CD}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution diff --git a/Plugins/LiveRadar/Web/Controllers/RadarController.cs b/Plugins/LiveRadar/Web/Controllers/RadarController.cs index 8920091b..e69de29b 100644 --- a/Plugins/LiveRadar/Web/Controllers/RadarController.cs +++ b/Plugins/LiveRadar/Web/Controllers/RadarController.cs @@ -1,60 +0,0 @@ -using Microsoft.AspNetCore.Mvc; -using Newtonsoft.Json; -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using WebfrontCore.Controllers; - -namespace LiveRadar.Web.Controllers -{ - public class RadarController : BaseController - { - private static readonly JsonSerializerSettings _serializerSettings = new JsonSerializerSettings() - { - ReferenceLoopHandling = ReferenceLoopHandling.Ignore, - ContractResolver = new Newtonsoft.Json.Serialization.CamelCasePropertyNamesContractResolver() - }; - - [HttpGet] - public IActionResult Index() - { - ViewBag.IsFluid = true; - return View(); - } - - public IActionResult Map(long? serverId = null) - { - var server = Manager.GetServers().FirstOrDefault(); - - var map = Plugin.Config.Configuration().Maps.FirstOrDefault(_map => _map.Name == server.CurrentMap.Name); - map.Alias = server.CurrentMap.Alias; - - return Json(map); - } - - [HttpGet] - [ResponseCache(Duration = 0, Location = ResponseCacheLocation.None, NoStore = true)] - public IActionResult Data(long? serverId = null) - { - var server = serverId == null ? Manager.GetServers()[0] : Manager.GetServers().First(_server => _server.GetHashCode() == serverId); - var radarInfo = server.GetClientsAsList().Select(_client => _client.GetAdditionalProperty("LiveRadar")).ToList(); - return Json(radarInfo); - } - - [HttpGet] - public IActionResult Update(string payload) - { - var radarUpdate = RadarEvent.Parse(payload); - var client = Manager.GetActiveClients().FirstOrDefault(_client => _client.NetworkId == radarUpdate.Guid); - - if (client != null) - { - radarUpdate.Name = client.Name; - client.SetAdditionalProperty("LiveRadar", radarUpdate); - } - - return Ok(); - } - } -} \ No newline at end of file diff --git a/Plugins/LiveRadar/Web/Views/LiveRadar/Index.cshtml b/Plugins/LiveRadar/Web/Views/LiveRadar/Index.cshtml new file mode 100644 index 00000000..e9fa1aa0 --- /dev/null +++ b/Plugins/LiveRadar/Web/Views/LiveRadar/Index.cshtml @@ -0,0 +1,455 @@ +@model IEnumerable + + +
+
+
+
+
+
+ +
+
+ +
+
+
+ + + + +@section scripts { + +} \ No newline at end of file diff --git a/WebfrontCore/wwwroot/images/hud_weapons/hud_40mmgrenade.webp b/WebfrontCore/wwwroot/images/hud_weapons/hud_40mmgrenade.webp new file mode 100644 index 00000000..750c075d Binary files /dev/null and b/WebfrontCore/wwwroot/images/hud_weapons/hud_40mmgrenade.webp differ diff --git a/WebfrontCore/wwwroot/images/hud_weapons/hud_aa12.png b/WebfrontCore/wwwroot/images/hud_weapons/hud_aa12.png new file mode 100644 index 00000000..2e6475fd Binary files /dev/null and b/WebfrontCore/wwwroot/images/hud_weapons/hud_aa12.png differ diff --git a/WebfrontCore/wwwroot/images/hud_weapons/hud_aa12.webp b/WebfrontCore/wwwroot/images/hud_weapons/hud_aa12.webp new file mode 100644 index 00000000..620cc061 Binary files /dev/null and b/WebfrontCore/wwwroot/images/hud_weapons/hud_aa12.webp differ diff --git a/WebfrontCore/wwwroot/images/hud_weapons/hud_ak47.png b/WebfrontCore/wwwroot/images/hud_weapons/hud_ak47.png new file mode 100644 index 00000000..654ac36a Binary files /dev/null and b/WebfrontCore/wwwroot/images/hud_weapons/hud_ak47.png differ diff --git a/WebfrontCore/wwwroot/images/hud_weapons/hud_ak47.webp b/WebfrontCore/wwwroot/images/hud_weapons/hud_ak47.webp new file mode 100644 index 00000000..01a6b2b2 Binary files /dev/null and b/WebfrontCore/wwwroot/images/hud_weapons/hud_ak47.webp differ diff --git a/WebfrontCore/wwwroot/images/hud_weapons/hud_akd74u.png b/WebfrontCore/wwwroot/images/hud_weapons/hud_akd74u.png new file mode 100644 index 00000000..36e9782a Binary files /dev/null and b/WebfrontCore/wwwroot/images/hud_weapons/hud_akd74u.png differ diff --git a/WebfrontCore/wwwroot/images/hud_weapons/hud_akd74u.webp b/WebfrontCore/wwwroot/images/hud_weapons/hud_akd74u.webp new file mode 100644 index 00000000..17ba4699 Binary files /dev/null and b/WebfrontCore/wwwroot/images/hud_weapons/hud_akd74u.webp differ diff --git a/WebfrontCore/wwwroot/images/hud_weapons/hud_at4.png b/WebfrontCore/wwwroot/images/hud_weapons/hud_at4.png new file mode 100644 index 00000000..0b700321 Binary files /dev/null and b/WebfrontCore/wwwroot/images/hud_weapons/hud_at4.png differ diff --git a/WebfrontCore/wwwroot/images/hud_weapons/hud_at4.webp b/WebfrontCore/wwwroot/images/hud_weapons/hud_at4.webp new file mode 100644 index 00000000..fa546152 Binary files /dev/null and b/WebfrontCore/wwwroot/images/hud_weapons/hud_at4.webp differ diff --git a/WebfrontCore/wwwroot/images/hud_weapons/hud_barrett50cal.png b/WebfrontCore/wwwroot/images/hud_weapons/hud_barrett50cal.png new file mode 100644 index 00000000..31fdb6b3 Binary files /dev/null and b/WebfrontCore/wwwroot/images/hud_weapons/hud_barrett50cal.png differ diff --git a/WebfrontCore/wwwroot/images/hud_weapons/hud_barrett50cal.webp b/WebfrontCore/wwwroot/images/hud_weapons/hud_barrett50cal.webp new file mode 100644 index 00000000..fa39bb4e Binary files /dev/null and b/WebfrontCore/wwwroot/images/hud_weapons/hud_barrett50cal.webp differ diff --git a/WebfrontCore/wwwroot/images/hud_weapons/hud_benelli_m4.png b/WebfrontCore/wwwroot/images/hud_weapons/hud_benelli_m4.png new file mode 100644 index 00000000..9646c43f Binary files /dev/null and b/WebfrontCore/wwwroot/images/hud_weapons/hud_benelli_m4.png differ diff --git a/WebfrontCore/wwwroot/images/hud_weapons/hud_benelli_m4.webp b/WebfrontCore/wwwroot/images/hud_weapons/hud_benelli_m4.webp new file mode 100644 index 00000000..7098224e Binary files /dev/null and b/WebfrontCore/wwwroot/images/hud_weapons/hud_benelli_m4.webp differ diff --git a/WebfrontCore/wwwroot/images/hud_weapons/hud_beretta393.png b/WebfrontCore/wwwroot/images/hud_weapons/hud_beretta393.png new file mode 100644 index 00000000..6502dc18 Binary files /dev/null and b/WebfrontCore/wwwroot/images/hud_weapons/hud_beretta393.png differ diff --git a/WebfrontCore/wwwroot/images/hud_weapons/hud_beretta393.webp b/WebfrontCore/wwwroot/images/hud_weapons/hud_beretta393.webp new file mode 100644 index 00000000..6edaf019 Binary files /dev/null and b/WebfrontCore/wwwroot/images/hud_weapons/hud_beretta393.webp differ diff --git a/WebfrontCore/wwwroot/images/hud_weapons/hud_cheytac.png b/WebfrontCore/wwwroot/images/hud_weapons/hud_cheytac.png new file mode 100644 index 00000000..f692e67f Binary files /dev/null and b/WebfrontCore/wwwroot/images/hud_weapons/hud_cheytac.png differ diff --git a/WebfrontCore/wwwroot/images/hud_weapons/hud_cheytac.webp b/WebfrontCore/wwwroot/images/hud_weapons/hud_cheytac.webp new file mode 100644 index 00000000..28cacb3c Binary files /dev/null and b/WebfrontCore/wwwroot/images/hud_weapons/hud_cheytac.webp differ diff --git a/WebfrontCore/wwwroot/images/hud_weapons/hud_colt45.webp b/WebfrontCore/wwwroot/images/hud_weapons/hud_colt45.webp new file mode 100644 index 00000000..3916c53b Binary files /dev/null and b/WebfrontCore/wwwroot/images/hud_weapons/hud_colt45.webp differ diff --git a/WebfrontCore/wwwroot/images/hud_weapons/hud_colt_anaconda.png b/WebfrontCore/wwwroot/images/hud_weapons/hud_colt_anaconda.png new file mode 100644 index 00000000..187c5ff7 Binary files /dev/null and b/WebfrontCore/wwwroot/images/hud_weapons/hud_colt_anaconda.png differ diff --git a/WebfrontCore/wwwroot/images/hud_weapons/hud_colt_anaconda.webp b/WebfrontCore/wwwroot/images/hud_weapons/hud_colt_anaconda.webp new file mode 100644 index 00000000..1eebaae3 Binary files /dev/null and b/WebfrontCore/wwwroot/images/hud_weapons/hud_colt_anaconda.webp differ diff --git a/WebfrontCore/wwwroot/images/hud_weapons/hud_death.png b/WebfrontCore/wwwroot/images/hud_weapons/hud_death.png new file mode 100644 index 00000000..5cd076a0 Binary files /dev/null and b/WebfrontCore/wwwroot/images/hud_weapons/hud_death.png differ diff --git a/WebfrontCore/wwwroot/images/hud_weapons/hud_desert_eagle.png b/WebfrontCore/wwwroot/images/hud_weapons/hud_desert_eagle.png new file mode 100644 index 00000000..45a13783 Binary files /dev/null and b/WebfrontCore/wwwroot/images/hud_weapons/hud_desert_eagle.png differ diff --git a/WebfrontCore/wwwroot/images/hud_weapons/hud_desert_eagle.webp b/WebfrontCore/wwwroot/images/hud_weapons/hud_desert_eagle.webp new file mode 100644 index 00000000..e9eb3123 Binary files /dev/null and b/WebfrontCore/wwwroot/images/hud_weapons/hud_desert_eagle.webp differ diff --git a/WebfrontCore/wwwroot/images/hud_weapons/hud_desert_eagle_gold.png b/WebfrontCore/wwwroot/images/hud_weapons/hud_desert_eagle_gold.png new file mode 100644 index 00000000..a13dafba Binary files /dev/null and b/WebfrontCore/wwwroot/images/hud_weapons/hud_desert_eagle_gold.png differ diff --git a/WebfrontCore/wwwroot/images/hud_weapons/hud_desert_eagle_gold.webp b/WebfrontCore/wwwroot/images/hud_weapons/hud_desert_eagle_gold.webp new file mode 100644 index 00000000..47c27d10 Binary files /dev/null and b/WebfrontCore/wwwroot/images/hud_weapons/hud_desert_eagle_gold.webp differ diff --git a/WebfrontCore/wwwroot/images/hud_weapons/hud_dragunovsvd.png b/WebfrontCore/wwwroot/images/hud_weapons/hud_dragunovsvd.png new file mode 100644 index 00000000..c0533cae Binary files /dev/null and b/WebfrontCore/wwwroot/images/hud_weapons/hud_dragunovsvd.png differ diff --git a/WebfrontCore/wwwroot/images/hud_weapons/hud_dragunovsvd.webp b/WebfrontCore/wwwroot/images/hud_weapons/hud_dragunovsvd.webp new file mode 100644 index 00000000..7e9f7b0c Binary files /dev/null and b/WebfrontCore/wwwroot/images/hud_weapons/hud_dragunovsvd.webp differ diff --git a/WebfrontCore/wwwroot/images/hud_weapons/hud_famas.png b/WebfrontCore/wwwroot/images/hud_weapons/hud_famas.png new file mode 100644 index 00000000..66f8e381 Binary files /dev/null and b/WebfrontCore/wwwroot/images/hud_weapons/hud_famas.png differ diff --git a/WebfrontCore/wwwroot/images/hud_weapons/hud_famas.webp b/WebfrontCore/wwwroot/images/hud_weapons/hud_famas.webp new file mode 100644 index 00000000..86d56e1e Binary files /dev/null and b/WebfrontCore/wwwroot/images/hud_weapons/hud_famas.webp differ diff --git a/WebfrontCore/wwwroot/images/hud_weapons/hud_fn2000.png b/WebfrontCore/wwwroot/images/hud_weapons/hud_fn2000.png new file mode 100644 index 00000000..962ed0f1 Binary files /dev/null and b/WebfrontCore/wwwroot/images/hud_weapons/hud_fn2000.png differ diff --git a/WebfrontCore/wwwroot/images/hud_weapons/hud_fn2000.webp b/WebfrontCore/wwwroot/images/hud_weapons/hud_fn2000.webp new file mode 100644 index 00000000..3ce1c090 Binary files /dev/null and b/WebfrontCore/wwwroot/images/hud_weapons/hud_fn2000.webp differ diff --git a/WebfrontCore/wwwroot/images/hud_weapons/hud_fnfal.png b/WebfrontCore/wwwroot/images/hud_weapons/hud_fnfal.png new file mode 100644 index 00000000..7ce90ec4 Binary files /dev/null and b/WebfrontCore/wwwroot/images/hud_weapons/hud_fnfal.png differ diff --git a/WebfrontCore/wwwroot/images/hud_weapons/hud_fnfal.webp b/WebfrontCore/wwwroot/images/hud_weapons/hud_fnfal.webp new file mode 100644 index 00000000..e272def0 Binary files /dev/null and b/WebfrontCore/wwwroot/images/hud_weapons/hud_fnfal.webp differ diff --git a/WebfrontCore/wwwroot/images/hud_weapons/hud_g36c_mp.webp b/WebfrontCore/wwwroot/images/hud_weapons/hud_g36c_mp.webp new file mode 100644 index 00000000..de99eff1 Binary files /dev/null and b/WebfrontCore/wwwroot/images/hud_weapons/hud_g36c_mp.webp differ diff --git a/WebfrontCore/wwwroot/images/hud_weapons/hud_glock.png b/WebfrontCore/wwwroot/images/hud_weapons/hud_glock.png new file mode 100644 index 00000000..428e6820 Binary files /dev/null and b/WebfrontCore/wwwroot/images/hud_weapons/hud_glock.png differ diff --git a/WebfrontCore/wwwroot/images/hud_weapons/hud_glock.webp b/WebfrontCore/wwwroot/images/hud_weapons/hud_glock.webp new file mode 100644 index 00000000..63bf06a9 Binary files /dev/null and b/WebfrontCore/wwwroot/images/hud_weapons/hud_glock.webp differ diff --git a/WebfrontCore/wwwroot/images/hud_weapons/hud_icon_ak47_classic.png b/WebfrontCore/wwwroot/images/hud_weapons/hud_icon_ak47_classic.png new file mode 100644 index 00000000..ab695df0 Binary files /dev/null and b/WebfrontCore/wwwroot/images/hud_weapons/hud_icon_ak47_classic.png differ diff --git a/WebfrontCore/wwwroot/images/hud_weapons/hud_icon_ak47_classic.webp b/WebfrontCore/wwwroot/images/hud_weapons/hud_icon_ak47_classic.webp new file mode 100644 index 00000000..2ed14ccf Binary files /dev/null and b/WebfrontCore/wwwroot/images/hud_weapons/hud_icon_ak47_classic.webp differ diff --git a/WebfrontCore/wwwroot/images/hud_weapons/hud_javelin.png b/WebfrontCore/wwwroot/images/hud_weapons/hud_javelin.png new file mode 100644 index 00000000..991919d0 Binary files /dev/null and b/WebfrontCore/wwwroot/images/hud_weapons/hud_javelin.png differ diff --git a/WebfrontCore/wwwroot/images/hud_weapons/hud_javelin.webp b/WebfrontCore/wwwroot/images/hud_weapons/hud_javelin.webp new file mode 100644 index 00000000..732c2eac Binary files /dev/null and b/WebfrontCore/wwwroot/images/hud_weapons/hud_javelin.webp differ diff --git a/WebfrontCore/wwwroot/images/hud_weapons/hud_kriss.png b/WebfrontCore/wwwroot/images/hud_weapons/hud_kriss.png new file mode 100644 index 00000000..be6b511b Binary files /dev/null and b/WebfrontCore/wwwroot/images/hud_weapons/hud_kriss.png differ diff --git a/WebfrontCore/wwwroot/images/hud_weapons/hud_kriss.webp b/WebfrontCore/wwwroot/images/hud_weapons/hud_kriss.webp new file mode 100644 index 00000000..80c72fd8 Binary files /dev/null and b/WebfrontCore/wwwroot/images/hud_weapons/hud_kriss.webp differ diff --git a/WebfrontCore/wwwroot/images/hud_weapons/hud_m14ebr.png b/WebfrontCore/wwwroot/images/hud_weapons/hud_m14ebr.png new file mode 100644 index 00000000..f5f78af9 Binary files /dev/null and b/WebfrontCore/wwwroot/images/hud_weapons/hud_m14ebr.png differ diff --git a/WebfrontCore/wwwroot/images/hud_weapons/hud_m14ebr.webp b/WebfrontCore/wwwroot/images/hud_weapons/hud_m14ebr.webp new file mode 100644 index 00000000..4966d605 Binary files /dev/null and b/WebfrontCore/wwwroot/images/hud_weapons/hud_m14ebr.webp differ diff --git a/WebfrontCore/wwwroot/images/hud_weapons/hud_m16a4.png b/WebfrontCore/wwwroot/images/hud_weapons/hud_m16a4.png new file mode 100644 index 00000000..143997f7 Binary files /dev/null and b/WebfrontCore/wwwroot/images/hud_weapons/hud_m16a4.png differ diff --git a/WebfrontCore/wwwroot/images/hud_weapons/hud_m16a4.webp b/WebfrontCore/wwwroot/images/hud_weapons/hud_m16a4.webp new file mode 100644 index 00000000..382929bf Binary files /dev/null and b/WebfrontCore/wwwroot/images/hud_weapons/hud_m16a4.webp differ diff --git a/WebfrontCore/wwwroot/images/hud_weapons/hud_m240.png b/WebfrontCore/wwwroot/images/hud_weapons/hud_m240.png new file mode 100644 index 00000000..e7847d65 Binary files /dev/null and b/WebfrontCore/wwwroot/images/hud_weapons/hud_m240.png differ diff --git a/WebfrontCore/wwwroot/images/hud_weapons/hud_m240.webp b/WebfrontCore/wwwroot/images/hud_weapons/hud_m240.webp new file mode 100644 index 00000000..def4d5e7 Binary files /dev/null and b/WebfrontCore/wwwroot/images/hud_weapons/hud_m240.webp differ diff --git a/WebfrontCore/wwwroot/images/hud_weapons/hud_m249saw.webp b/WebfrontCore/wwwroot/images/hud_weapons/hud_m249saw.webp new file mode 100644 index 00000000..b93acd37 Binary files /dev/null and b/WebfrontCore/wwwroot/images/hud_weapons/hud_m249saw.webp differ diff --git a/WebfrontCore/wwwroot/images/hud_weapons/hud_m40a3.png b/WebfrontCore/wwwroot/images/hud_weapons/hud_m40a3.png new file mode 100644 index 00000000..6c5bd2ae Binary files /dev/null and b/WebfrontCore/wwwroot/images/hud_weapons/hud_m40a3.png differ diff --git a/WebfrontCore/wwwroot/images/hud_weapons/hud_m40a3.webp b/WebfrontCore/wwwroot/images/hud_weapons/hud_m40a3.webp new file mode 100644 index 00000000..18f21d40 Binary files /dev/null and b/WebfrontCore/wwwroot/images/hud_weapons/hud_m40a3.webp differ diff --git a/WebfrontCore/wwwroot/images/hud_weapons/hud_m4carbine.png b/WebfrontCore/wwwroot/images/hud_weapons/hud_m4carbine.png new file mode 100644 index 00000000..5f4a5361 Binary files /dev/null and b/WebfrontCore/wwwroot/images/hud_weapons/hud_m4carbine.png differ diff --git a/WebfrontCore/wwwroot/images/hud_weapons/hud_m4carbine.webp b/WebfrontCore/wwwroot/images/hud_weapons/hud_m4carbine.webp new file mode 100644 index 00000000..91d00f3e Binary files /dev/null and b/WebfrontCore/wwwroot/images/hud_weapons/hud_m4carbine.webp differ diff --git a/WebfrontCore/wwwroot/images/hud_weapons/hud_m79.png b/WebfrontCore/wwwroot/images/hud_weapons/hud_m79.png new file mode 100644 index 00000000..5aa5ee17 Binary files /dev/null and b/WebfrontCore/wwwroot/images/hud_weapons/hud_m79.png differ diff --git a/WebfrontCore/wwwroot/images/hud_weapons/hud_m79.webp b/WebfrontCore/wwwroot/images/hud_weapons/hud_m79.webp new file mode 100644 index 00000000..057fe3b5 Binary files /dev/null and b/WebfrontCore/wwwroot/images/hud_weapons/hud_m79.webp differ diff --git a/WebfrontCore/wwwroot/images/hud_weapons/hud_m9beretta.png b/WebfrontCore/wwwroot/images/hud_weapons/hud_m9beretta.png new file mode 100644 index 00000000..a9eee023 Binary files /dev/null and b/WebfrontCore/wwwroot/images/hud_weapons/hud_m9beretta.png differ diff --git a/WebfrontCore/wwwroot/images/hud_weapons/hud_m9beretta.webp b/WebfrontCore/wwwroot/images/hud_weapons/hud_m9beretta.webp new file mode 100644 index 00000000..12f0ff20 Binary files /dev/null and b/WebfrontCore/wwwroot/images/hud_weapons/hud_m9beretta.webp differ diff --git a/WebfrontCore/wwwroot/images/hud_weapons/hud_masada.png b/WebfrontCore/wwwroot/images/hud_weapons/hud_masada.png new file mode 100644 index 00000000..9af0b560 Binary files /dev/null and b/WebfrontCore/wwwroot/images/hud_weapons/hud_masada.png differ diff --git a/WebfrontCore/wwwroot/images/hud_weapons/hud_masada.webp b/WebfrontCore/wwwroot/images/hud_weapons/hud_masada.webp new file mode 100644 index 00000000..b8281a47 Binary files /dev/null and b/WebfrontCore/wwwroot/images/hud_weapons/hud_masada.webp differ diff --git a/WebfrontCore/wwwroot/images/hud_weapons/hud_mg4.png b/WebfrontCore/wwwroot/images/hud_weapons/hud_mg4.png new file mode 100644 index 00000000..1d8beb9a Binary files /dev/null and b/WebfrontCore/wwwroot/images/hud_weapons/hud_mg4.png differ diff --git a/WebfrontCore/wwwroot/images/hud_weapons/hud_mg4.webp b/WebfrontCore/wwwroot/images/hud_weapons/hud_mg4.webp new file mode 100644 index 00000000..2ff5b6ac Binary files /dev/null and b/WebfrontCore/wwwroot/images/hud_weapons/hud_mg4.webp differ diff --git a/WebfrontCore/wwwroot/images/hud_weapons/hud_mini_uzi.png b/WebfrontCore/wwwroot/images/hud_weapons/hud_mini_uzi.png new file mode 100644 index 00000000..d307bdc0 Binary files /dev/null and b/WebfrontCore/wwwroot/images/hud_weapons/hud_mini_uzi.png differ diff --git a/WebfrontCore/wwwroot/images/hud_weapons/hud_mini_uzi.webp b/WebfrontCore/wwwroot/images/hud_weapons/hud_mini_uzi.webp new file mode 100644 index 00000000..f95b7022 Binary files /dev/null and b/WebfrontCore/wwwroot/images/hud_weapons/hud_mini_uzi.webp differ diff --git a/WebfrontCore/wwwroot/images/hud_weapons/hud_model1887.png b/WebfrontCore/wwwroot/images/hud_weapons/hud_model1887.png new file mode 100644 index 00000000..9cfd1fbc Binary files /dev/null and b/WebfrontCore/wwwroot/images/hud_weapons/hud_model1887.png differ diff --git a/WebfrontCore/wwwroot/images/hud_weapons/hud_model1887.webp b/WebfrontCore/wwwroot/images/hud_weapons/hud_model1887.webp new file mode 100644 index 00000000..63961d28 Binary files /dev/null and b/WebfrontCore/wwwroot/images/hud_weapons/hud_model1887.webp differ diff --git a/WebfrontCore/wwwroot/images/hud_weapons/hud_mp5k.png b/WebfrontCore/wwwroot/images/hud_weapons/hud_mp5k.png new file mode 100644 index 00000000..02a1d0f0 Binary files /dev/null and b/WebfrontCore/wwwroot/images/hud_weapons/hud_mp5k.png differ diff --git a/WebfrontCore/wwwroot/images/hud_weapons/hud_mp5k.webp b/WebfrontCore/wwwroot/images/hud_weapons/hud_mp5k.webp new file mode 100644 index 00000000..9a254fa9 Binary files /dev/null and b/WebfrontCore/wwwroot/images/hud_weapons/hud_mp5k.webp differ diff --git a/WebfrontCore/wwwroot/images/hud_weapons/hud_mp9.png b/WebfrontCore/wwwroot/images/hud_weapons/hud_mp9.png new file mode 100644 index 00000000..722b15de Binary files /dev/null and b/WebfrontCore/wwwroot/images/hud_weapons/hud_mp9.png differ diff --git a/WebfrontCore/wwwroot/images/hud_weapons/hud_mp9.webp b/WebfrontCore/wwwroot/images/hud_weapons/hud_mp9.webp new file mode 100644 index 00000000..02fdde0c Binary files /dev/null and b/WebfrontCore/wwwroot/images/hud_weapons/hud_mp9.webp differ diff --git a/WebfrontCore/wwwroot/images/hud_weapons/hud_neutral.png b/WebfrontCore/wwwroot/images/hud_weapons/hud_neutral.png new file mode 100644 index 00000000..bcbe3751 Binary files /dev/null and b/WebfrontCore/wwwroot/images/hud_weapons/hud_neutral.png differ diff --git a/WebfrontCore/wwwroot/images/hud_weapons/hud_neutral.webp b/WebfrontCore/wwwroot/images/hud_weapons/hud_neutral.webp new file mode 100644 index 00000000..95797af1 Binary files /dev/null and b/WebfrontCore/wwwroot/images/hud_weapons/hud_neutral.webp differ diff --git a/WebfrontCore/wwwroot/images/hud_weapons/hud_p90.png b/WebfrontCore/wwwroot/images/hud_weapons/hud_p90.png new file mode 100644 index 00000000..41196eb2 Binary files /dev/null and b/WebfrontCore/wwwroot/images/hud_weapons/hud_p90.png differ diff --git a/WebfrontCore/wwwroot/images/hud_weapons/hud_p90.webp b/WebfrontCore/wwwroot/images/hud_weapons/hud_p90.webp new file mode 100644 index 00000000..77dde060 Binary files /dev/null and b/WebfrontCore/wwwroot/images/hud_weapons/hud_p90.webp differ diff --git a/WebfrontCore/wwwroot/images/hud_weapons/hud_peacekeeper.png b/WebfrontCore/wwwroot/images/hud_weapons/hud_peacekeeper.png new file mode 100644 index 00000000..a3f5a580 Binary files /dev/null and b/WebfrontCore/wwwroot/images/hud_weapons/hud_peacekeeper.png differ diff --git a/WebfrontCore/wwwroot/images/hud_weapons/hud_peacekeeper.webp b/WebfrontCore/wwwroot/images/hud_weapons/hud_peacekeeper.webp new file mode 100644 index 00000000..b7aabb52 Binary files /dev/null and b/WebfrontCore/wwwroot/images/hud_weapons/hud_peacekeeper.webp differ diff --git a/WebfrontCore/wwwroot/images/hud_weapons/hud_pp2000.png b/WebfrontCore/wwwroot/images/hud_weapons/hud_pp2000.png new file mode 100644 index 00000000..85f6f6a9 Binary files /dev/null and b/WebfrontCore/wwwroot/images/hud_weapons/hud_pp2000.png differ diff --git a/WebfrontCore/wwwroot/images/hud_weapons/hud_pp2000.webp b/WebfrontCore/wwwroot/images/hud_weapons/hud_pp2000.webp new file mode 100644 index 00000000..06edb397 Binary files /dev/null and b/WebfrontCore/wwwroot/images/hud_weapons/hud_pp2000.webp differ diff --git a/WebfrontCore/wwwroot/images/hud_weapons/hud_remington_700.webp b/WebfrontCore/wwwroot/images/hud_weapons/hud_remington_700.webp new file mode 100644 index 00000000..6ff2b2f9 Binary files /dev/null and b/WebfrontCore/wwwroot/images/hud_weapons/hud_remington_700.webp differ diff --git a/WebfrontCore/wwwroot/images/hud_weapons/hud_riot_shield.png b/WebfrontCore/wwwroot/images/hud_weapons/hud_riot_shield.png new file mode 100644 index 00000000..7226b127 Binary files /dev/null and b/WebfrontCore/wwwroot/images/hud_weapons/hud_riot_shield.png differ diff --git a/WebfrontCore/wwwroot/images/hud_weapons/hud_riot_shield.webp b/WebfrontCore/wwwroot/images/hud_weapons/hud_riot_shield.webp new file mode 100644 index 00000000..25b734b8 Binary files /dev/null and b/WebfrontCore/wwwroot/images/hud_weapons/hud_riot_shield.webp differ diff --git a/WebfrontCore/wwwroot/images/hud_weapons/hud_rpd.png b/WebfrontCore/wwwroot/images/hud_weapons/hud_rpd.png new file mode 100644 index 00000000..714cee90 Binary files /dev/null and b/WebfrontCore/wwwroot/images/hud_weapons/hud_rpd.png differ diff --git a/WebfrontCore/wwwroot/images/hud_weapons/hud_rpd.webp b/WebfrontCore/wwwroot/images/hud_weapons/hud_rpd.webp new file mode 100644 index 00000000..20e5652e Binary files /dev/null and b/WebfrontCore/wwwroot/images/hud_weapons/hud_rpd.webp differ diff --git a/WebfrontCore/wwwroot/images/hud_weapons/hud_rpg.png b/WebfrontCore/wwwroot/images/hud_weapons/hud_rpg.png new file mode 100644 index 00000000..0b196253 Binary files /dev/null and b/WebfrontCore/wwwroot/images/hud_weapons/hud_rpg.png differ diff --git a/WebfrontCore/wwwroot/images/hud_weapons/hud_rpg.webp b/WebfrontCore/wwwroot/images/hud_weapons/hud_rpg.webp new file mode 100644 index 00000000..fbcffbc7 Binary files /dev/null and b/WebfrontCore/wwwroot/images/hud_weapons/hud_rpg.webp differ diff --git a/WebfrontCore/wwwroot/images/hud_weapons/hud_sa80_lmg.png b/WebfrontCore/wwwroot/images/hud_weapons/hud_sa80_lmg.png new file mode 100644 index 00000000..36d24afe Binary files /dev/null and b/WebfrontCore/wwwroot/images/hud_weapons/hud_sa80_lmg.png differ diff --git a/WebfrontCore/wwwroot/images/hud_weapons/hud_sa80_lmg.webp b/WebfrontCore/wwwroot/images/hud_weapons/hud_sa80_lmg.webp new file mode 100644 index 00000000..31171704 Binary files /dev/null and b/WebfrontCore/wwwroot/images/hud_weapons/hud_sa80_lmg.webp differ diff --git a/WebfrontCore/wwwroot/images/hud_weapons/hud_sawed_off.png b/WebfrontCore/wwwroot/images/hud_weapons/hud_sawed_off.png new file mode 100644 index 00000000..da138686 Binary files /dev/null and b/WebfrontCore/wwwroot/images/hud_weapons/hud_sawed_off.png differ diff --git a/WebfrontCore/wwwroot/images/hud_weapons/hud_sawed_off.webp b/WebfrontCore/wwwroot/images/hud_weapons/hud_sawed_off.webp new file mode 100644 index 00000000..3cddac4d Binary files /dev/null and b/WebfrontCore/wwwroot/images/hud_weapons/hud_sawed_off.webp differ diff --git a/WebfrontCore/wwwroot/images/hud_weapons/hud_scar_h.png b/WebfrontCore/wwwroot/images/hud_weapons/hud_scar_h.png new file mode 100644 index 00000000..8d0a3ddb Binary files /dev/null and b/WebfrontCore/wwwroot/images/hud_weapons/hud_scar_h.png differ diff --git a/WebfrontCore/wwwroot/images/hud_weapons/hud_scar_h.webp b/WebfrontCore/wwwroot/images/hud_weapons/hud_scar_h.webp new file mode 100644 index 00000000..0c14dc7b Binary files /dev/null and b/WebfrontCore/wwwroot/images/hud_weapons/hud_scar_h.webp differ diff --git a/WebfrontCore/wwwroot/images/hud_weapons/hud_skorpian.webp b/WebfrontCore/wwwroot/images/hud_weapons/hud_skorpian.webp new file mode 100644 index 00000000..81bf6475 Binary files /dev/null and b/WebfrontCore/wwwroot/images/hud_weapons/hud_skorpian.webp differ diff --git a/WebfrontCore/wwwroot/images/hud_weapons/hud_spas12.png b/WebfrontCore/wwwroot/images/hud_weapons/hud_spas12.png new file mode 100644 index 00000000..2dcd1982 Binary files /dev/null and b/WebfrontCore/wwwroot/images/hud_weapons/hud_spas12.png differ diff --git a/WebfrontCore/wwwroot/images/hud_weapons/hud_spas12.webp b/WebfrontCore/wwwroot/images/hud_weapons/hud_spas12.webp new file mode 100644 index 00000000..c52c5a03 Binary files /dev/null and b/WebfrontCore/wwwroot/images/hud_weapons/hud_spas12.webp differ diff --git a/WebfrontCore/wwwroot/images/hud_weapons/hud_steyr.png b/WebfrontCore/wwwroot/images/hud_weapons/hud_steyr.png new file mode 100644 index 00000000..6cd7424a Binary files /dev/null and b/WebfrontCore/wwwroot/images/hud_weapons/hud_steyr.png differ diff --git a/WebfrontCore/wwwroot/images/hud_weapons/hud_steyr.webp b/WebfrontCore/wwwroot/images/hud_weapons/hud_steyr.webp new file mode 100644 index 00000000..a354b944 Binary files /dev/null and b/WebfrontCore/wwwroot/images/hud_weapons/hud_steyr.webp differ diff --git a/WebfrontCore/wwwroot/images/hud_weapons/hud_stinger.png b/WebfrontCore/wwwroot/images/hud_weapons/hud_stinger.png new file mode 100644 index 00000000..2bc40c3a Binary files /dev/null and b/WebfrontCore/wwwroot/images/hud_weapons/hud_stinger.png differ diff --git a/WebfrontCore/wwwroot/images/hud_weapons/hud_stinger.webp b/WebfrontCore/wwwroot/images/hud_weapons/hud_stinger.webp new file mode 100644 index 00000000..c7e7c612 Binary files /dev/null and b/WebfrontCore/wwwroot/images/hud_weapons/hud_stinger.webp differ diff --git a/WebfrontCore/wwwroot/images/hud_weapons/hud_striker.png b/WebfrontCore/wwwroot/images/hud_weapons/hud_striker.png new file mode 100644 index 00000000..518d588f Binary files /dev/null and b/WebfrontCore/wwwroot/images/hud_weapons/hud_striker.png differ diff --git a/WebfrontCore/wwwroot/images/hud_weapons/hud_striker.webp b/WebfrontCore/wwwroot/images/hud_weapons/hud_striker.webp new file mode 100644 index 00000000..e3a9b081 Binary files /dev/null and b/WebfrontCore/wwwroot/images/hud_weapons/hud_striker.webp differ diff --git a/WebfrontCore/wwwroot/images/hud_weapons/hud_tavor.png b/WebfrontCore/wwwroot/images/hud_weapons/hud_tavor.png new file mode 100644 index 00000000..4d361da7 Binary files /dev/null and b/WebfrontCore/wwwroot/images/hud_weapons/hud_tavor.png differ diff --git a/WebfrontCore/wwwroot/images/hud_weapons/hud_tavor.webp b/WebfrontCore/wwwroot/images/hud_weapons/hud_tavor.webp new file mode 100644 index 00000000..944d9355 Binary files /dev/null and b/WebfrontCore/wwwroot/images/hud_weapons/hud_tavor.webp differ diff --git a/WebfrontCore/wwwroot/images/hud_weapons/hud_ump45.png b/WebfrontCore/wwwroot/images/hud_weapons/hud_ump45.png new file mode 100644 index 00000000..bc3a40b8 Binary files /dev/null and b/WebfrontCore/wwwroot/images/hud_weapons/hud_ump45.png differ diff --git a/WebfrontCore/wwwroot/images/hud_weapons/hud_ump45.webp b/WebfrontCore/wwwroot/images/hud_weapons/hud_ump45.webp new file mode 100644 index 00000000..6ec50b0b Binary files /dev/null and b/WebfrontCore/wwwroot/images/hud_weapons/hud_ump45.webp differ diff --git a/WebfrontCore/wwwroot/images/hud_weapons/hud_undermounted_shotgun.webp b/WebfrontCore/wwwroot/images/hud_weapons/hud_undermounted_shotgun.webp new file mode 100644 index 00000000..5e884af4 Binary files /dev/null and b/WebfrontCore/wwwroot/images/hud_weapons/hud_undermounted_shotgun.webp differ diff --git a/WebfrontCore/wwwroot/images/hud_weapons/hud_usp_45.png b/WebfrontCore/wwwroot/images/hud_weapons/hud_usp_45.png new file mode 100644 index 00000000..f05f66b3 Binary files /dev/null and b/WebfrontCore/wwwroot/images/hud_weapons/hud_usp_45.png differ diff --git a/WebfrontCore/wwwroot/images/hud_weapons/hud_usp_45.webp b/WebfrontCore/wwwroot/images/hud_weapons/hud_usp_45.webp new file mode 100644 index 00000000..25605ac2 Binary files /dev/null and b/WebfrontCore/wwwroot/images/hud_weapons/hud_usp_45.webp differ diff --git a/WebfrontCore/wwwroot/images/hud_weapons/hud_wa2000.png b/WebfrontCore/wwwroot/images/hud_weapons/hud_wa2000.png new file mode 100644 index 00000000..20f47ce4 Binary files /dev/null and b/WebfrontCore/wwwroot/images/hud_weapons/hud_wa2000.png differ diff --git a/WebfrontCore/wwwroot/images/hud_weapons/hud_wa2000.webp b/WebfrontCore/wwwroot/images/hud_weapons/hud_wa2000.webp new file mode 100644 index 00000000..71dd9c84 Binary files /dev/null and b/WebfrontCore/wwwroot/images/hud_weapons/hud_wa2000.webp differ diff --git a/WebfrontCore/wwwroot/images/radar/minimaps/compass_map_mp_afghan@2x.png b/WebfrontCore/wwwroot/images/radar/minimaps/compass_map_mp_afghan@2x.png new file mode 100644 index 00000000..3a7798c8 Binary files /dev/null and b/WebfrontCore/wwwroot/images/radar/minimaps/compass_map_mp_afghan@2x.png differ diff --git a/WebfrontCore/wwwroot/images/radar/minimaps/compass_map_mp_boneyard@2x.png b/WebfrontCore/wwwroot/images/radar/minimaps/compass_map_mp_boneyard@2x.png new file mode 100644 index 00000000..d3227218 Binary files /dev/null and b/WebfrontCore/wwwroot/images/radar/minimaps/compass_map_mp_boneyard@2x.png differ diff --git a/WebfrontCore/wwwroot/images/radar/minimaps/compass_map_mp_brecourt@2x.png b/WebfrontCore/wwwroot/images/radar/minimaps/compass_map_mp_brecourt@2x.png new file mode 100644 index 00000000..74bbff45 Binary files /dev/null and b/WebfrontCore/wwwroot/images/radar/minimaps/compass_map_mp_brecourt@2x.png differ diff --git a/WebfrontCore/wwwroot/images/radar/minimaps/compass_map_mp_checkpoint@2x.png b/WebfrontCore/wwwroot/images/radar/minimaps/compass_map_mp_checkpoint@2x.png new file mode 100644 index 00000000..3f33c3a4 Binary files /dev/null and b/WebfrontCore/wwwroot/images/radar/minimaps/compass_map_mp_checkpoint@2x.png differ diff --git a/WebfrontCore/wwwroot/images/radar/minimaps/compass_map_mp_derail@2x.png b/WebfrontCore/wwwroot/images/radar/minimaps/compass_map_mp_derail@2x.png new file mode 100644 index 00000000..b1d9e0a5 Binary files /dev/null and b/WebfrontCore/wwwroot/images/radar/minimaps/compass_map_mp_derail@2x.png differ diff --git a/WebfrontCore/wwwroot/images/radar/minimaps/compass_map_mp_estate@2x.png b/WebfrontCore/wwwroot/images/radar/minimaps/compass_map_mp_estate@2x.png new file mode 100644 index 00000000..d2618a06 Binary files /dev/null and b/WebfrontCore/wwwroot/images/radar/minimaps/compass_map_mp_estate@2x.png differ diff --git a/WebfrontCore/wwwroot/images/radar/minimaps/compass_map_mp_favela@2x.png b/WebfrontCore/wwwroot/images/radar/minimaps/compass_map_mp_favela@2x.png new file mode 100644 index 00000000..156cf998 Binary files /dev/null and b/WebfrontCore/wwwroot/images/radar/minimaps/compass_map_mp_favela@2x.png differ diff --git a/WebfrontCore/wwwroot/images/radar/minimaps/compass_map_mp_highrise@2x.png b/WebfrontCore/wwwroot/images/radar/minimaps/compass_map_mp_highrise@2x.png new file mode 100644 index 00000000..28e1e032 Binary files /dev/null and b/WebfrontCore/wwwroot/images/radar/minimaps/compass_map_mp_highrise@2x.png differ diff --git a/WebfrontCore/wwwroot/images/radar/minimaps/compass_map_mp_invasion@2x.png b/WebfrontCore/wwwroot/images/radar/minimaps/compass_map_mp_invasion@2x.png new file mode 100644 index 00000000..621cd1dc Binary files /dev/null and b/WebfrontCore/wwwroot/images/radar/minimaps/compass_map_mp_invasion@2x.png differ diff --git a/WebfrontCore/wwwroot/images/radar/minimaps/compass_map_mp_nightshift@2x.png b/WebfrontCore/wwwroot/images/radar/minimaps/compass_map_mp_nightshift@2x.png new file mode 100644 index 00000000..dafba260 Binary files /dev/null and b/WebfrontCore/wwwroot/images/radar/minimaps/compass_map_mp_nightshift@2x.png differ diff --git a/WebfrontCore/wwwroot/images/radar/minimaps/compass_map_mp_quarry@2x.png b/WebfrontCore/wwwroot/images/radar/minimaps/compass_map_mp_quarry@2x.png new file mode 100644 index 00000000..40f32278 Binary files /dev/null and b/WebfrontCore/wwwroot/images/radar/minimaps/compass_map_mp_quarry@2x.png differ diff --git a/WebfrontCore/wwwroot/images/radar/minimaps/compass_map_mp_rundown@2x.png b/WebfrontCore/wwwroot/images/radar/minimaps/compass_map_mp_rundown@2x.png new file mode 100644 index 00000000..f4032c80 Binary files /dev/null and b/WebfrontCore/wwwroot/images/radar/minimaps/compass_map_mp_rundown@2x.png differ diff --git a/WebfrontCore/wwwroot/images/radar/minimaps/compass_map_mp_rust@2x.png b/WebfrontCore/wwwroot/images/radar/minimaps/compass_map_mp_rust@2x.png new file mode 100644 index 00000000..f2bece27 Binary files /dev/null and b/WebfrontCore/wwwroot/images/radar/minimaps/compass_map_mp_rust@2x.png differ diff --git a/WebfrontCore/wwwroot/images/radar/minimaps/compass_map_mp_subbase@2x.png b/WebfrontCore/wwwroot/images/radar/minimaps/compass_map_mp_subbase@2x.png new file mode 100644 index 00000000..b24c7bb3 Binary files /dev/null and b/WebfrontCore/wwwroot/images/radar/minimaps/compass_map_mp_subbase@2x.png differ diff --git a/WebfrontCore/wwwroot/images/radar/minimaps/compass_map_mp_terminal@2x.png b/WebfrontCore/wwwroot/images/radar/minimaps/compass_map_mp_terminal@2x.png new file mode 100644 index 00000000..a080e11a Binary files /dev/null and b/WebfrontCore/wwwroot/images/radar/minimaps/compass_map_mp_terminal@2x.png differ diff --git a/WebfrontCore/wwwroot/images/radar/minimaps/compass_map_mp_underpass@2x.png b/WebfrontCore/wwwroot/images/radar/minimaps/compass_map_mp_underpass@2x.png new file mode 100644 index 00000000..3b92b001 Binary files /dev/null and b/WebfrontCore/wwwroot/images/radar/minimaps/compass_map_mp_underpass@2x.png differ