Compare commits
37 Commits
build-336
...
3cf012e067
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
3cf012e067 | ||
|
|
d1a4d35e20 | ||
|
|
415824755e | ||
|
|
5955accadd | ||
|
|
eae091b59a | ||
|
|
a89593f6a2 | ||
|
|
c418de1e17 | ||
|
|
82e73e764e | ||
|
|
ad6c7df357 | ||
|
|
a1fa8f37c7 | ||
|
|
475e91e779 | ||
|
|
a136f5472e | ||
|
|
9576b41ace | ||
|
|
0decc0405a | ||
|
|
b5d7f12024 | ||
|
|
9ec64e346f | ||
|
|
b4dc20523c | ||
|
|
8891ce815e | ||
|
|
e48308f8af | ||
|
|
2fcf5d7caa | ||
|
|
ea9963b920 | ||
|
|
4a5a08aca9 | ||
|
|
573604a9d9 | ||
|
|
3929a43e46 | ||
|
|
f7f18b7919 | ||
|
|
0d110d83c7 | ||
|
|
db20e2eef9 | ||
|
|
536cea96d6 | ||
|
|
84684f4a26 | ||
|
|
48b9679236 | ||
|
|
7493ee4c7f | ||
|
|
027a547052 | ||
|
|
686c225f4f | ||
|
|
a5397e3831 | ||
|
|
1b95ddb089 | ||
|
|
7d4078dc40 | ||
|
|
e3011c51ae |
48
Commands.cs
@@ -1,4 +1,5 @@
|
|||||||
using System.Collections.Concurrent;
|
using System.Collections.Concurrent;
|
||||||
|
using CounterStrikeSharp.API;
|
||||||
using CounterStrikeSharp.API.Core;
|
using CounterStrikeSharp.API.Core;
|
||||||
using CounterStrikeSharp.API.Modules.Commands;
|
using CounterStrikeSharp.API.Modules.Commands;
|
||||||
using CounterStrikeSharp.API.Modules.Menu;
|
using CounterStrikeSharp.API.Modules.Menu;
|
||||||
@@ -106,6 +107,16 @@ public partial class WeaponPaints
|
|||||||
|
|
||||||
private void RegisterCommands()
|
private void RegisterCommands()
|
||||||
{
|
{
|
||||||
|
_config.Additional.CommandStattrak.ForEach(c =>
|
||||||
|
{
|
||||||
|
AddCommand($"css_{c}", "Stattrak toggle", (player, info) =>
|
||||||
|
{
|
||||||
|
if (!Utility.IsPlayerValid(player)) return;
|
||||||
|
|
||||||
|
OnCommandStattrak(player, info);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
_config.Additional.CommandSkin.ForEach(c =>
|
_config.Additional.CommandSkin.ForEach(c =>
|
||||||
{
|
{
|
||||||
AddCommand($"css_{c}", "Skins info", (player, info) =>
|
AddCommand($"css_{c}", "Skins info", (player, info) =>
|
||||||
@@ -138,6 +149,27 @@ public partial class WeaponPaints
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private void OnCommandStattrak(CCSPlayerController? player, CommandInfo commandInfo)
|
||||||
|
{
|
||||||
|
if (player == null || !player.IsValid) return;
|
||||||
|
|
||||||
|
var weapon = player.PlayerPawn.Value?.WeaponServices?.ActiveWeapon.Value;
|
||||||
|
|
||||||
|
if (weapon == null || !weapon.IsValid)
|
||||||
|
return;
|
||||||
|
|
||||||
|
if (!HasChangedPaint(player, weapon.AttributeManager.Item.ItemDefinitionIndex, out var weaponInfo) || weaponInfo == null)
|
||||||
|
return;
|
||||||
|
|
||||||
|
weaponInfo.StatTrak = !weaponInfo.StatTrak;
|
||||||
|
RefreshWeapons(player);
|
||||||
|
|
||||||
|
if (!string.IsNullOrEmpty(Localizer["wp_stattrak_action"]))
|
||||||
|
{
|
||||||
|
player.Print(Localizer["wp_stattrak_action"]);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
private void SetupKnifeMenu()
|
private void SetupKnifeMenu()
|
||||||
{
|
{
|
||||||
if (!Config.Additional.KnifeEnabled || !_gBCommandsAllowed) return;
|
if (!Config.Additional.KnifeEnabled || !_gBCommandsAllowed) return;
|
||||||
@@ -146,7 +178,7 @@ public partial class WeaponPaints
|
|||||||
.Where(pair => pair.Key.StartsWith("weapon_knife") || pair.Key.StartsWith("weapon_bayonet"))
|
.Where(pair => pair.Key.StartsWith("weapon_knife") || pair.Key.StartsWith("weapon_bayonet"))
|
||||||
.ToDictionary(pair => pair.Key, pair => pair.Value);
|
.ToDictionary(pair => pair.Key, pair => pair.Value);
|
||||||
|
|
||||||
var giveItemMenu = MenuApi?.NewMenu(Localizer["wp_knife_menu_title"]);
|
var giveItemMenu = Utility.CreateMenu(Localizer["wp_knife_menu_title"]);
|
||||||
|
|
||||||
var handleGive = (CCSPlayerController player, ChatMenuOption option) =>
|
var handleGive = (CCSPlayerController player, ChatMenuOption option) =>
|
||||||
{
|
{
|
||||||
@@ -230,7 +262,7 @@ public partial class WeaponPaints
|
|||||||
.Except([new KeyValuePair<string, string>("weapon_knife", "Default Knife")])
|
.Except([new KeyValuePair<string, string>("weapon_knife", "Default Knife")])
|
||||||
.ToDictionary(kvp => kvp.Value, kvp => kvp.Key);
|
.ToDictionary(kvp => kvp.Value, kvp => kvp.Key);
|
||||||
|
|
||||||
var weaponSelectionMenu = MenuApi?.NewMenu(Localizer["wp_skin_menu_weapon_title"]);
|
var weaponSelectionMenu = Utility.CreateMenu(Localizer["wp_skin_menu_weapon_title"]);
|
||||||
|
|
||||||
// Function to handle skin selection for a specific weapon
|
// Function to handle skin selection for a specific weapon
|
||||||
var handleWeaponSelection = (CCSPlayerController? player, ChatMenuOption option) =>
|
var handleWeaponSelection = (CCSPlayerController? player, ChatMenuOption option) =>
|
||||||
@@ -245,7 +277,7 @@ public partial class WeaponPaints
|
|||||||
weaponName?.ToString() == selectedWeaponClassname
|
weaponName?.ToString() == selectedWeaponClassname
|
||||||
)?.ToList();
|
)?.ToList();
|
||||||
|
|
||||||
var skinSubMenu = MenuApi?.NewMenu(Localizer["wp_skin_menu_skin_title", selectedWeapon]);
|
var skinSubMenu = Utility.CreateMenu(Localizer["wp_skin_menu_skin_title", selectedWeapon]);
|
||||||
|
|
||||||
// Function to handle skin selection for the chosen weapon
|
// Function to handle skin selection for the chosen weapon
|
||||||
var handleSkinSelection = (CCSPlayerController p, ChatMenuOption opt) =>
|
var handleSkinSelection = (CCSPlayerController p, ChatMenuOption opt) =>
|
||||||
@@ -302,7 +334,7 @@ public partial class WeaponPaints
|
|||||||
value.Seed = 0;
|
value.Seed = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
PlayerInfo playerInfo = new PlayerInfo
|
var playerInfo = new PlayerInfo
|
||||||
{
|
{
|
||||||
UserId = p.UserId,
|
UserId = p.UserId,
|
||||||
Slot = p.Slot,
|
Slot = p.Slot,
|
||||||
@@ -381,7 +413,7 @@ public partial class WeaponPaints
|
|||||||
|
|
||||||
private void SetupGlovesMenu()
|
private void SetupGlovesMenu()
|
||||||
{
|
{
|
||||||
var glovesSelectionMenu = MenuApi?.NewMenu(Localizer["wp_glove_menu_title"]);
|
var glovesSelectionMenu = Utility.CreateMenu(Localizer["wp_glove_menu_title"]);
|
||||||
if (glovesSelectionMenu == null) return;
|
if (glovesSelectionMenu == null) return;
|
||||||
glovesSelectionMenu.PostSelectAction = PostSelectAction.Close;
|
glovesSelectionMenu.PostSelectAction = PostSelectAction.Close;
|
||||||
|
|
||||||
@@ -590,7 +622,7 @@ public partial class WeaponPaints
|
|||||||
if (!CommandsCooldown.TryGetValue(player.Slot, out DateTime cooldownEndTime) ||
|
if (!CommandsCooldown.TryGetValue(player.Slot, out DateTime cooldownEndTime) ||
|
||||||
DateTime.UtcNow >= (CommandsCooldown.TryGetValue(player.Slot, out cooldownEndTime) ? cooldownEndTime : DateTime.UtcNow))
|
DateTime.UtcNow >= (CommandsCooldown.TryGetValue(player.Slot, out cooldownEndTime) ? cooldownEndTime : DateTime.UtcNow))
|
||||||
{
|
{
|
||||||
var agentsSelectionMenu = MenuApi?.NewMenu(Localizer["wp_agent_menu_title"]);
|
var agentsSelectionMenu = Utility.CreateMenu(Localizer["wp_agent_menu_title"]);
|
||||||
if (agentsSelectionMenu == null) return;
|
if (agentsSelectionMenu == null) return;
|
||||||
agentsSelectionMenu.PostSelectAction = PostSelectAction.Close;
|
agentsSelectionMenu.PostSelectAction = PostSelectAction.Close;
|
||||||
|
|
||||||
@@ -630,7 +662,7 @@ public partial class WeaponPaints
|
|||||||
|
|
||||||
private void SetupMusicMenu()
|
private void SetupMusicMenu()
|
||||||
{
|
{
|
||||||
var musicSelectionMenu = MenuApi?.NewMenu(Localizer["wp_music_menu_title"]);
|
var musicSelectionMenu = Utility.CreateMenu(Localizer["wp_music_menu_title"]);
|
||||||
if (musicSelectionMenu == null) return;
|
if (musicSelectionMenu == null) return;
|
||||||
musicSelectionMenu.PostSelectAction = PostSelectAction.Close;
|
musicSelectionMenu.PostSelectAction = PostSelectAction.Close;
|
||||||
|
|
||||||
@@ -765,7 +797,7 @@ public partial class WeaponPaints
|
|||||||
|
|
||||||
private void SetupPinsMenu()
|
private void SetupPinsMenu()
|
||||||
{
|
{
|
||||||
var pinsSelectionMenu = MenuApi?.NewMenu(Localizer["wp_pins_menu_title"]);
|
var pinsSelectionMenu = Utility.CreateMenu(Localizer["wp_pins_menu_title"]);
|
||||||
if (pinsSelectionMenu == null) return;
|
if (pinsSelectionMenu == null) return;
|
||||||
pinsSelectionMenu.PostSelectAction = PostSelectAction.Close;
|
pinsSelectionMenu.PostSelectAction = PostSelectAction.Close;
|
||||||
|
|
||||||
|
|||||||
10
Config.cs
@@ -43,6 +43,9 @@ namespace WeaponPaints
|
|||||||
|
|
||||||
[JsonPropertyName("CommandAgent")]
|
[JsonPropertyName("CommandAgent")]
|
||||||
public List<string> CommandAgent { get; set; } = ["agents"];
|
public List<string> CommandAgent { get; set; } = ["agents"];
|
||||||
|
|
||||||
|
[JsonPropertyName("CommandStattrak")]
|
||||||
|
public List<string> CommandStattrak { get; set; } = ["stattrak", "st"];
|
||||||
|
|
||||||
[JsonPropertyName("CommandSkin")]
|
[JsonPropertyName("CommandSkin")]
|
||||||
public List<string> CommandSkin { get; set; } = ["ws"];
|
public List<string> CommandSkin { get; set; } = ["ws"];
|
||||||
@@ -68,7 +71,7 @@ namespace WeaponPaints
|
|||||||
|
|
||||||
public class WeaponPaintsConfig : BasePluginConfig
|
public class WeaponPaintsConfig : BasePluginConfig
|
||||||
{
|
{
|
||||||
[JsonPropertyName("ConfigVersion")] public override int Version { get; set; } = 9;
|
[JsonPropertyName("ConfigVersion")] public override int Version { get; set; } = 10;
|
||||||
|
|
||||||
[JsonPropertyName("SkinsLanguage")]
|
[JsonPropertyName("SkinsLanguage")]
|
||||||
public string SkinsLanguage { get; set; } = "en";
|
public string SkinsLanguage { get; set; } = "en";
|
||||||
@@ -89,12 +92,15 @@ namespace WeaponPaints
|
|||||||
public string DatabaseName { get; set; } = "";
|
public string DatabaseName { get; set; } = "";
|
||||||
|
|
||||||
[JsonPropertyName("CmdRefreshCooldownSeconds")]
|
[JsonPropertyName("CmdRefreshCooldownSeconds")]
|
||||||
public int CmdRefreshCooldownSeconds { get; set; } = 10;
|
public int CmdRefreshCooldownSeconds { get; set; } = 3;
|
||||||
|
|
||||||
[JsonPropertyName("Website")]
|
[JsonPropertyName("Website")]
|
||||||
public string Website { get; set; } = "example.com/skins";
|
public string Website { get; set; } = "example.com/skins";
|
||||||
|
|
||||||
[JsonPropertyName("Additional")]
|
[JsonPropertyName("Additional")]
|
||||||
public Additional Additional { get; set; } = new();
|
public Additional Additional { get; set; } = new();
|
||||||
|
|
||||||
|
[JsonPropertyName("MenuType")]
|
||||||
|
public string MenuType { get; set; } = "selectable";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
55
Events.cs
@@ -79,13 +79,17 @@ namespace WeaponPaints
|
|||||||
IpAddress = player.IpAddress?.Split(":")[0]
|
IpAddress = player.IpAddress?.Split(":")[0]
|
||||||
};
|
};
|
||||||
|
|
||||||
if (WeaponSync != null)
|
Task.Run(async () =>
|
||||||
_ = Task.Run(async () => await WeaponSync.SyncStatTrakToDatabase(playerInfo));
|
|
||||||
|
|
||||||
if (Config.Additional.SkinEnabled)
|
|
||||||
{
|
{
|
||||||
GPlayerWeaponsInfo.TryRemove(player.Slot, out _);
|
if (WeaponSync != null)
|
||||||
}
|
await WeaponSync.SyncStatTrakToDatabase(playerInfo);
|
||||||
|
|
||||||
|
if (Config.Additional.SkinEnabled)
|
||||||
|
{
|
||||||
|
GPlayerWeaponsInfo.TryRemove(player.Slot, out _);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
if (Config.Additional.KnifeEnabled)
|
if (Config.Additional.KnifeEnabled)
|
||||||
{
|
{
|
||||||
GPlayersKnife.TryRemove(player.Slot, out _);
|
GPlayersKnife.TryRemove(player.Slot, out _);
|
||||||
@@ -106,7 +110,7 @@ namespace WeaponPaints
|
|||||||
{
|
{
|
||||||
GPlayersPin.TryRemove(player.Slot, out _);
|
GPlayersPin.TryRemove(player.Slot, out _);
|
||||||
}
|
}
|
||||||
|
|
||||||
_temporaryPlayerWeaponWear.TryRemove(player.Slot, out _);
|
_temporaryPlayerWeaponWear.TryRemove(player.Slot, out _);
|
||||||
CommandsCooldown.Remove(player.Slot);
|
CommandsCooldown.Remove(player.Slot);
|
||||||
|
|
||||||
@@ -116,9 +120,12 @@ namespace WeaponPaints
|
|||||||
private void OnMapStart(string mapName)
|
private void OnMapStart(string mapName)
|
||||||
{
|
{
|
||||||
if (Config.Additional is { KnifeEnabled: false, SkinEnabled: false, GloveEnabled: false }) return;
|
if (Config.Additional is { KnifeEnabled: false, SkinEnabled: false, GloveEnabled: false }) return;
|
||||||
|
|
||||||
if (Database != null)
|
if (Database != null)
|
||||||
WeaponSync = new WeaponSynchronization(Database, Config);
|
WeaponSync = new WeaponSynchronization(Database, Config);
|
||||||
|
|
||||||
|
_fadeSeed = 0;
|
||||||
|
_nextItemId = MinimumCustomItemId;
|
||||||
}
|
}
|
||||||
|
|
||||||
private HookResult OnPlayerSpawn(EventPlayerSpawn @event, GameEventInfo info)
|
private HookResult OnPlayerSpawn(EventPlayerSpawn @event, GameEventInfo info)
|
||||||
@@ -186,7 +193,7 @@ namespace WeaponPaints
|
|||||||
return HookResult.Continue;
|
return HookResult.Continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
public HookResult OnGiveNamedItemPost(DynamicHook hook)
|
private HookResult OnGiveNamedItemPost(DynamicHook hook)
|
||||||
{
|
{
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
@@ -197,14 +204,16 @@ namespace WeaponPaints
|
|||||||
|
|
||||||
var player = GetPlayerFromItemServices(itemServices);
|
var player = GetPlayerFromItemServices(itemServices);
|
||||||
if (player != null)
|
if (player != null)
|
||||||
|
{
|
||||||
GivePlayerWeaponSkin(player, weapon);
|
GivePlayerWeaponSkin(player, weapon);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
catch { }
|
catch { }
|
||||||
|
|
||||||
return HookResult.Continue;
|
return HookResult.Continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void OnEntityCreated(CEntityInstance entity)
|
private void OnEntityCreated(CEntityInstance entity)
|
||||||
{
|
{
|
||||||
var designerName = entity.DesignerName;
|
var designerName = entity.DesignerName;
|
||||||
|
|
||||||
@@ -269,10 +278,17 @@ namespace WeaponPaints
|
|||||||
[GameEventHandler]
|
[GameEventHandler]
|
||||||
public HookResult OnItemPickup(EventItemPickup @event, GameEventInfo _)
|
public HookResult OnItemPickup(EventItemPickup @event, GameEventInfo _)
|
||||||
{
|
{
|
||||||
if (!IsWindows) return HookResult.Continue;
|
// if (!IsWindows) return HookResult.Continue;
|
||||||
|
|
||||||
var player = @event.Userid;
|
var player = @event.Userid;
|
||||||
if (player != null && player is { IsValid: true, Connected: PlayerConnectedState.PlayerConnected, PawnIsAlive: true, PlayerPawn.IsValid: true })
|
if (player == null || !player.IsValid || player.IsBot) return HookResult.Continue;
|
||||||
|
if (!@event.Item.Contains("knife")) return HookResult.Continue;
|
||||||
|
|
||||||
|
var weaponDefIndex = (int)@event.Defindex;
|
||||||
|
|
||||||
|
if (!HasChangedKnife(player, out var _) || !HasChangedPaint(player, weaponDefIndex, out var _))
|
||||||
|
return HookResult.Continue;
|
||||||
|
|
||||||
|
if (player is { Connected: PlayerConnectedState.PlayerConnected, PawnIsAlive: true, PlayerPawn.IsValid: true })
|
||||||
{
|
{
|
||||||
GiveOnItemPickup(player);
|
GiveOnItemPickup(player);
|
||||||
}
|
}
|
||||||
@@ -290,20 +306,16 @@ namespace WeaponPaints
|
|||||||
|
|
||||||
if (victim == null || !victim.IsValid || victim == player)
|
if (victim == null || !victim.IsValid || victim == player)
|
||||||
return HookResult.Continue;
|
return HookResult.Continue;
|
||||||
|
|
||||||
if (!GPlayerWeaponsInfo.TryGetValue(player.Slot, out var teamInfo) ||
|
|
||||||
!teamInfo.TryGetValue(player.Team, out var teamWeapons) )
|
|
||||||
return HookResult.Continue;
|
|
||||||
|
|
||||||
CBasePlayerWeapon? weapon = player.PlayerPawn.Value?.WeaponServices?.ActiveWeapon.Value;
|
CBasePlayerWeapon? weapon = player.PlayerPawn.Value?.WeaponServices?.ActiveWeapon.Value;
|
||||||
|
|
||||||
if (weapon == null) return HookResult.Continue;
|
if (weapon == null) return HookResult.Continue;
|
||||||
|
|
||||||
int weaponDefIndex = weapon.AttributeManager.Item.ItemDefinitionIndex;
|
int weaponDefIndex = weapon.AttributeManager.Item.ItemDefinitionIndex;
|
||||||
|
|
||||||
if (!teamWeapons.TryGetValue(weaponDefIndex, out var weaponInfo) || weaponInfo.Paint == 0)
|
if (!HasChangedPaint(player, weaponDefIndex, out var weaponInfo) || weaponInfo == null)
|
||||||
return HookResult.Continue;
|
return HookResult.Continue;
|
||||||
|
|
||||||
if (!weaponInfo.StatTrak) return HookResult.Continue;
|
if (!weaponInfo.StatTrak) return HookResult.Continue;
|
||||||
|
|
||||||
weaponInfo.StatTrakCount += 1;
|
weaponInfo.StatTrakCount += 1;
|
||||||
@@ -331,8 +343,7 @@ namespace WeaponPaints
|
|||||||
if (Config.Additional.ShowSkinImage)
|
if (Config.Additional.ShowSkinImage)
|
||||||
RegisterListener<Listeners.OnTick>(OnTick);
|
RegisterListener<Listeners.OnTick>(OnTick);
|
||||||
|
|
||||||
if (!IsWindows)
|
VirtualFunctions.GiveNamedItemFunc.Hook(OnGiveNamedItemPost, HookMode.Post);
|
||||||
VirtualFunctions.GiveNamedItemFunc.Hook(OnGiveNamedItemPost, HookMode.Post);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
153
README.md
@@ -1,20 +1,36 @@
|
|||||||
# CS2 Weapon Paints
|
```
|
||||||
|
|
||||||
## Description
|
__ __ ___ _ _
|
||||||
|
/ / /\ \ \___ __ _ _ __ ___ _ __ / _ \__ _(_)_ __ | |_ ___
|
||||||
|
\ \/ \/ / _ \/ _` | '_ \ / _ \| '_ \ / /_)/ _` | | '_ \| __/ __|
|
||||||
|
\ /\ / __/ (_| | |_) | (_) | | | / ___/ (_| | | | | | |_\__ \
|
||||||
|
\/ \/ \___|\__,_| .__/ \___/|_| |_\/ \__,_|_|_| |_|\__|___/
|
||||||
|
|_|
|
||||||
|
|
||||||
|
```
|
||||||
|
|
||||||
|
<p align="center">
|
||||||
|
<a href="https://github.com/Nereziel/cs2-WeaponPaints/releases">📖 Releases</a> •
|
||||||
|
<a href="https://discord.gg/d9CvaYPSFe">💬 Discord</a>
|
||||||
|
<br /><br />
|
||||||
|
</p>
|
||||||
|
<hr />
|
||||||
|
|
||||||
|
## 📝 Description
|
||||||
Unfinished, unoptimized and not fully functional ugly demo weapon paints plugin for **[CSSharp](https://docs.cssharp.dev/docs/guides/getting-started.html)**.
|
Unfinished, unoptimized and not fully functional ugly demo weapon paints plugin for **[CSSharp](https://docs.cssharp.dev/docs/guides/getting-started.html)**.
|
||||||
|
|
||||||
## Created [Discord server](https://discord.gg/d9CvaYPSFe) where you can discuss about plugin.
|
|
||||||
|
|
||||||
### Consider to donate instead of buying from unknown sources.
|
### 💸 Consider to donate instead of buying from unknown sources.
|
||||||
[](https://ko-fi.com/E1E2G0P2O) or [](https://steamcommunity.com/tradeoffer/new/?partner=41515647&token=gW2W-nXE)
|
[](https://ko-fi.com/E1E2G0P2O) or [](https://steamcommunity.com/tradeoffer/new/?partner=41515647&token=gW2W-nXE)
|
||||||
|
|
||||||
## Features
|
## ✨ Features
|
||||||
- Changes only paint, seed and wear on weapons, knives, gloves and agents
|
- Changes only paint, seed and wear on weapons, knives, gloves and agents
|
||||||
- MySQL based
|
- MySQL based
|
||||||
- Data syncs on player connect
|
- Data syncs on player connect
|
||||||
- Added command **`!wp`** to refresh skins ***(with cooldown in seconds can be configured)***
|
- Added command **`!wp`** to refresh skins ***(with cooldown in seconds can be configured)***
|
||||||
- Added command **`!ws`** to show website
|
- Added command **`!ws`** to show website
|
||||||
- Added command **`!knife`** to show menu with knives
|
- Added command **`!knife`** to show menu with knives
|
||||||
|
- Added command **`!stattrak`** to enable stattrak on weapon
|
||||||
- Added command **`!gloves`** to show menu with gloves
|
- Added command **`!gloves`** to show menu with gloves
|
||||||
- Added command **`!agents`** to show menu with agents
|
- Added command **`!agents`** to show menu with agents
|
||||||
- Added command **`!pins`** to show menu with pins
|
- Added command **`!pins`** to show menu with pins
|
||||||
@@ -29,7 +45,7 @@ Unfinished, unoptimized and not fully functional ugly demo weapon paints plugin
|
|||||||
- [MenuManagerCS2](https://github.com/NickFox007/MenuManagerCS2)
|
- [MenuManagerCS2](https://github.com/NickFox007/MenuManagerCS2)
|
||||||
- MySQL database
|
- MySQL database
|
||||||
|
|
||||||
## CS2 Server
|
## 🗄️ CS2 Server
|
||||||
- Have working CounterStrikeSharp (**with RUNTIME!**)
|
- Have working CounterStrikeSharp (**with RUNTIME!**)
|
||||||
- Download from Release and copy plugin to plugins
|
- Download from Release and copy plugin to plugins
|
||||||
- Run server with plugin, **it will generate config if installed correctly!**
|
- Run server with plugin, **it will generate config if installed correctly!**
|
||||||
@@ -37,49 +53,72 @@ Unfinished, unoptimized and not fully functional ugly demo weapon paints plugin
|
|||||||
- In `addons/counterstrikesharp/configs/`**`core.json`** set **FollowCS2ServerGuidelines** to **`false`**
|
- In `addons/counterstrikesharp/configs/`**`core.json`** set **FollowCS2ServerGuidelines** to **`false`**
|
||||||
- Copy from plugins folder gamedata file **`weaponpaints.json`** to folder **`addons/counterstrikesharp/gamedata/`**
|
- Copy from plugins folder gamedata file **`weaponpaints.json`** to folder **`addons/counterstrikesharp/gamedata/`**
|
||||||
|
|
||||||
## Plugin Configuration
|
## 🛠️ Plugin Configuration
|
||||||
<details>
|
<details>
|
||||||
<summary>Click to expand</summary>
|
<summary>Click to expand</summary>
|
||||||
<code><pre>{
|
<code><pre>{
|
||||||
"Version": 4, // Don't touch
|
"ConfigVersion": 10, // Don't touch
|
||||||
"DatabaseHost": "", // MySQL host
|
"SkinsLanguage": "en", // Language
|
||||||
"DatabasePort": 3306, // MySQL port
|
"DatabaseHost": "", // MySQL host
|
||||||
"DatabaseUser": "", // MySQL username
|
"DatabasePort": 3306, // MySQL Port
|
||||||
"DatabasePassword": "", // MySQL user password
|
"DatabaseUser": "", // MySQL Username
|
||||||
"DatabaseName": "", // MySQL database name
|
"DatabasePassword": "", // MySQL User password
|
||||||
"CmdRefreshCooldownSeconds": 60, // Cooldown time in refreshing skins (!wp command)
|
"DatabaseName": "", // MySQL Database name
|
||||||
"Prefix": "[WeaponPaints]", // Prefix every chat message
|
"CmdRefreshCooldownSeconds": 3, // Cooldown time in refreshing skins (!wp command)
|
||||||
"Website": "example.com/skins", // Website used in WebsiteMessageCommand (!ws command)
|
"Website": "example.com/skins", // Website used in WebsiteMessageCommand (!ws command)
|
||||||
"Messages": {
|
"Additional": {
|
||||||
"WebsiteMessageCommand": "Visit {WEBSITE} where you can change skins.", // Information about website where player can change skins (!ws command) Set to empty to disable
|
"KnifeEnabled": true, // If knives are enabled
|
||||||
"SynchronizeMessageCommand": "Type !wp to synchronize chosen skins.", // Information about skins refreshing (!ws command) Set to empty to disable
|
"GloveEnabled": true, // If gloves are enabled
|
||||||
"KnifeMessageCommand": "Type !knife to open knife menu.", // Information about knife menu (!ws command) Set to empty to disable
|
"MusicEnabled": true, // If music kits are enabled
|
||||||
"CooldownRefreshCommand": "You can\u0027t refresh weapon paints right now.", // Cooldown information (!wp command) Set to empty to disable
|
"AgentEnabled": true, // If agents are enabled
|
||||||
"SuccessRefreshCommand": "Refreshing weapon paints.", // Information about refreshing skins (!wp command) Set to empty to disable
|
"SkinEnabled": true, // If skins are enabled
|
||||||
"ChosenKnifeMenu": "You have chosen {KNIFE} as your knife.", // Information about choosen knife (!knife command) Set to empty to disable
|
"PinsEnabled": true, // If pins are enabled
|
||||||
"ChosenSkinMenu": "You have chosen {SKIN} as your skin.", // Information about choosen skin (!skins command) Set to empty to disable
|
"CommandWpEnabled": true, // If command !wp is enabled
|
||||||
"ChosenKnifeMenuKill": "To correctly apply skin for knife, you need to type !kill.", // Information about suicide after knife selection (!knife command) Set to empty to disable
|
"CommandKillEnabled": true, // If command !kill is enabled
|
||||||
"KnifeMenuTitle": "Knife Menu.", // Menu title (!knife menu)
|
"CommandKnife": [ // Command for knives
|
||||||
"WeaponMenuTitle": "Weapon Menu.", // Menu title (!skins menu)
|
"knife"
|
||||||
"SkinMenuTitle": "Select skin for {WEAPON}" // Menu title (!skins menu, after weapon select)
|
],
|
||||||
},
|
"CommandMusic": [ // Command for music kits
|
||||||
"Additional": {
|
"music"
|
||||||
"KnifeEnabled": true, // Enable or disable knife feature
|
],
|
||||||
"SkinEnabled": true, // Enable or disable skin feature
|
"CommandPin": [ // Command for pins
|
||||||
"CommandWpEnabled": true, // Enable or disable refreshing command
|
"pin",
|
||||||
"CommandKillEnabled": true, // Enable or disable kill command
|
"pins",
|
||||||
"CommandKnife": "knife", // Name of knife menu command, u can change to for e.g, knives
|
"coin",
|
||||||
"CommandSkin": "ws", // Name of skin information command, u can change to for e.g, skins
|
"coins"
|
||||||
"CommandSkinSelection": "skins", // Name of skins menu command, u can change to for e.g, weapons
|
],
|
||||||
"CommandRefresh": "wp", // Name of skin refreshing command, u can change to for e.g, refreshskins
|
"CommandGlove": [ // Command for gloves
|
||||||
"CommandKill": "kill", // Name of kill command, u can change to for e.g, suicide
|
"gloves"
|
||||||
"GiveRandomKnife": false, // Give random knife to players if they didn't choose
|
],
|
||||||
"GiveRandomSkins": false // Give random skins to players if they didn't choose
|
"CommandAgent": [ // Command for agents
|
||||||
},
|
"agents"
|
||||||
|
],
|
||||||
|
"CommandStattrak": [ // Command for stattrak
|
||||||
|
"stattrak",
|
||||||
|
"st"
|
||||||
|
],
|
||||||
|
"CommandSkin": [ // Command for skins
|
||||||
|
"ws"
|
||||||
|
],
|
||||||
|
"CommandSkinSelection": [ // Command for skin selection
|
||||||
|
"skins"
|
||||||
|
],
|
||||||
|
"CommandRefresh": [ // Command for refreshing your skins
|
||||||
|
"wp"
|
||||||
|
],
|
||||||
|
"CommandKill": [ // Command for death
|
||||||
|
"kill"
|
||||||
|
],
|
||||||
|
"GiveRandomKnife": false, // If it should give you Random Knife
|
||||||
|
"GiveRandomSkin": false, // If it should give you Random Skin
|
||||||
|
"ShowSkinImage": true // When you select a skin if it should show skins image
|
||||||
|
},
|
||||||
|
"MenuType": "selectable" // Menu type commands. Can be: selectable, dynamic, center, chat, console
|
||||||
|
}
|
||||||
</pre></code>
|
</pre></code>
|
||||||
</details>
|
</details>
|
||||||
|
|
||||||
## Web install
|
## 🖥️ Web install
|
||||||
- Requires PHP >= 7.4 with curl and pdo_mysql ***(Tested on php ver **`8.2.3`** and nginx webserver)***
|
- Requires PHP >= 7.4 with curl and pdo_mysql ***(Tested on php ver **`8.2.3`** and nginx webserver)***
|
||||||
- **Before using website, make sure the plugin is correctly loaded in cs2 server!** Mysql tables are created by plugin not by website.
|
- **Before using website, make sure the plugin is correctly loaded in cs2 server!** Mysql tables are created by plugin not by website.
|
||||||
- Copy website to web server ***(Folder `img` not needed)***
|
- Copy website to web server ***(Folder `img` not needed)***
|
||||||
@@ -87,22 +126,44 @@ Unfinished, unoptimized and not fully functional ugly demo weapon paints plugin
|
|||||||
- Fill in database credentials and api key in `class/config.php`
|
- Fill in database credentials and api key in `class/config.php`
|
||||||
- Visit website and login via steam
|
- Visit website and login via steam
|
||||||
|
|
||||||
## Web Features
|
## 🧩 Web Features
|
||||||
|
> [!WARNING]
|
||||||
|
> We recommend you to use any third-party website for WeaponPaints. Website by us doesn't get updated!
|
||||||
- Basic website
|
- Basic website
|
||||||
- Steam login/logout
|
- Steam login/logout
|
||||||
- Change knife, paint, seed and wear
|
- Change knife, paint, seed and wear
|
||||||
|
|
||||||
## Troubleshooting
|
## 🌐 Third-party websites
|
||||||
|
- **[CSS-Bans](https://github.com/counterstrikesharp-panel/css-bans)**
|
||||||
|
- **[CS2-WeaponPaints-Website](https://github.com/LielXD/CS2-WeaponPaints-Website)**
|
||||||
|
- **[cs2-WeaponPaints-website](https://github.com/L1teD/cs2-WeaponPaints-website)** > This webiste is different from the one above!
|
||||||
|
- **[CS2-WeaponPaints-Web](https://github.com/rogeraabbccdd/CS2-WeaponPaints-Web)**
|
||||||
|
## 🤔 Troubleshooting
|
||||||
<details>
|
<details>
|
||||||
|
|
||||||
**Skins are not changing:**
|
**Skins are not changing:**
|
||||||
Set FollowCSGOGuidelines to false in cssharp’s core.jcon config
|
Set FollowCSGOGuidelines to false in cssharp’s core.jcon config
|
||||||
|
|
||||||
**Database error table does not exists:**
|
**Database error table does not exists:**
|
||||||
Plugin is not loaded or configured with mysql credentials. Tables are auto-created by plugin.
|
Plugin is not loaded or configured with mysql credentials. Tables are auto-created by plugin.
|
||||||
|
|
||||||
|
**An error occured in Get....FromDatabase:**
|
||||||
|
If you used WeaponPaints and you update to newer version you could get this error. You need to add this queries to Database:
|
||||||
|
```
|
||||||
|
ALTER TABLE wp_player_skins
|
||||||
|
ADD COLUMN weapon_nametag VARCHAR(128) DEFAULT NULL,
|
||||||
|
ADD COLUMN weapon_stattrak tinyint(1) NOT NULL,
|
||||||
|
ADD COLUMN weapon_stattrak_count int(10) NOT NULL,
|
||||||
|
ADD COLUMN weapon_sticker_0 VARCHAR(128) DEFAULT '0;0;0;0;0;0;0' COMMENT 'id;schema;x;y;wear;scale;rotation',
|
||||||
|
ADD COLUMN weapon_sticker_1 VARCHAR(128) DEFAULT '0;0;0;0;0;0' COMMENT 'id;schema;x;y;wear;scale;rotation',
|
||||||
|
ADD COLUMN weapon_sticker_2 VARCHAR(128) DEFAULT '0;0;0;0;0;0' COMMENT 'id;schema;x;y;wear;scale;rotation',
|
||||||
|
ADD COLUMN weapon_sticker_3 VARCHAR(128) DEFAULT '0;0;0;0;0;0' COMMENT 'id;schema;x;y;wear;scale;rotation',
|
||||||
|
ADD COLUMN weapon_sticker_4 VARCHAR(128) DEFAULT '0;0;0;0;0;0' COMMENT 'id;schema;x;y;wear;scale;rotation',
|
||||||
|
ADD COLUMN weapon_keychain VARCHAR(128) DEFAULT '0;0;0;0;0' COMMENT 'id;x;y;z;seed';
|
||||||
|
```
|
||||||
</details>
|
</details>
|
||||||
|
|
||||||
### Use this plugin at your own risk! Using this may lead to GSLT ban or something else Valve come with. [Valve Server guidelines](https://blog.counter-strike.net/index.php/server_guidelines/)
|
### Use this plugin at your own risk! Using this may lead to GSLT ban or something else Valve come with. [Valve Server guidelines](https://blog.counter-strike.net/index.php/server_guidelines/)
|
||||||
|
|
||||||
## Preview
|
## Website Preview
|
||||||

|

|
||||||
|
|||||||
30
Utility.cs
@@ -1,6 +1,8 @@
|
|||||||
using CounterStrikeSharp.API.Core;
|
using CounterStrikeSharp.API.Core;
|
||||||
using CounterStrikeSharp.API.Core.Translations;
|
using CounterStrikeSharp.API.Core.Translations;
|
||||||
|
using CounterStrikeSharp.API.Modules.Menu;
|
||||||
using Dapper;
|
using Dapper;
|
||||||
|
using MenuManager;
|
||||||
using Microsoft.Extensions.Logging;
|
using Microsoft.Extensions.Logging;
|
||||||
using Newtonsoft.Json;
|
using Newtonsoft.Json;
|
||||||
using Newtonsoft.Json.Linq;
|
using Newtonsoft.Json.Linq;
|
||||||
@@ -188,10 +190,32 @@ namespace WeaponPaints
|
|||||||
Console.WriteLine("[WeaponPaints] " + message);
|
Console.WriteLine("[WeaponPaints] " + message);
|
||||||
Console.ResetColor();
|
Console.ResetColor();
|
||||||
}
|
}
|
||||||
|
|
||||||
internal static string ReplaceTags(string message)
|
internal static IMenu? CreateMenu(string title)
|
||||||
{
|
{
|
||||||
return message.ReplaceColorTags();
|
var menuType = WeaponPaints.Instance.Config.MenuType.ToLower();
|
||||||
|
|
||||||
|
var menu = menuType switch
|
||||||
|
{
|
||||||
|
_ when menuType.Equals("selectable", StringComparison.CurrentCultureIgnoreCase) =>
|
||||||
|
WeaponPaints.MenuApi?.NewMenu(title),
|
||||||
|
|
||||||
|
_ when menuType.Equals("dynamic", StringComparison.CurrentCultureIgnoreCase) =>
|
||||||
|
WeaponPaints.MenuApi?.NewMenuForcetype(title, MenuType.ButtonMenu),
|
||||||
|
|
||||||
|
_ when menuType.Equals("center", StringComparison.CurrentCultureIgnoreCase) =>
|
||||||
|
WeaponPaints.MenuApi?.NewMenuForcetype(title, MenuType.CenterMenu),
|
||||||
|
|
||||||
|
_ when menuType.Equals("chat", StringComparison.CurrentCultureIgnoreCase) =>
|
||||||
|
WeaponPaints.MenuApi?.NewMenuForcetype(title, MenuType.ChatMenu),
|
||||||
|
|
||||||
|
_ when menuType.Equals("console", StringComparison.CurrentCultureIgnoreCase) =>
|
||||||
|
WeaponPaints.MenuApi?.NewMenuForcetype(title, MenuType.ConsoleMenu),
|
||||||
|
|
||||||
|
_ => WeaponPaints.MenuApi?.NewMenu(title)
|
||||||
|
};
|
||||||
|
|
||||||
|
return menu;
|
||||||
}
|
}
|
||||||
|
|
||||||
internal static async Task CheckVersion(string version, ILogger logger)
|
internal static async Task CheckVersion(string version, ILogger logger)
|
||||||
|
|||||||
@@ -77,7 +77,7 @@ public partial class WeaponPaints
|
|||||||
internal static readonly ConcurrentDictionary<int, ConcurrentDictionary<CsTeam, ushort>> GPlayersGlove = new();
|
internal static readonly ConcurrentDictionary<int, ConcurrentDictionary<CsTeam, ushort>> GPlayersGlove = new();
|
||||||
internal static readonly ConcurrentDictionary<int, ConcurrentDictionary<CsTeam, ushort>> GPlayersMusic = new();
|
internal static readonly ConcurrentDictionary<int, ConcurrentDictionary<CsTeam, ushort>> GPlayersMusic = new();
|
||||||
internal static readonly ConcurrentDictionary<int, ConcurrentDictionary<CsTeam, ushort>> GPlayersPin = new();
|
internal static readonly ConcurrentDictionary<int, ConcurrentDictionary<CsTeam, ushort>> GPlayersPin = new();
|
||||||
public static readonly ConcurrentDictionary<int, (string? CT, string? T)> GPlayersAgent = new();
|
internal static readonly ConcurrentDictionary<int, (string? CT, string? T)> GPlayersAgent = new();
|
||||||
internal static readonly ConcurrentDictionary<int, ConcurrentDictionary<CsTeam, ConcurrentDictionary<int, WeaponInfo>>> GPlayerWeaponsInfo = new();
|
internal static readonly ConcurrentDictionary<int, ConcurrentDictionary<CsTeam, ConcurrentDictionary<int, WeaponInfo>>> GPlayerWeaponsInfo = new();
|
||||||
internal static List<JObject> SkinsList = [];
|
internal static List<JObject> SkinsList = [];
|
||||||
internal static List<JObject> PinsList = [];
|
internal static List<JObject> PinsList = [];
|
||||||
@@ -92,7 +92,7 @@ public partial class WeaponPaints
|
|||||||
internal static Database? Database;
|
internal static Database? Database;
|
||||||
|
|
||||||
private static readonly MemoryFunctionVoid<nint, string, float> CAttributeListSetOrAddAttributeValueByName = new(GameData.GetSignature("CAttributeList_SetOrAddAttributeValueByName"));
|
private static readonly MemoryFunctionVoid<nint, string, float> CAttributeListSetOrAddAttributeValueByName = new(GameData.GetSignature("CAttributeList_SetOrAddAttributeValueByName"));
|
||||||
|
|
||||||
private static readonly MemoryFunctionWithReturn<nint, string, int, int> SetBodygroupFunc = new(
|
private static readonly MemoryFunctionWithReturn<nint, string, int, int> SetBodygroupFunc = new(
|
||||||
GameData.GetSignature("CBaseModelEntity_SetBodygroup"));
|
GameData.GetSignature("CBaseModelEntity_SetBodygroup"));
|
||||||
|
|
||||||
@@ -165,4 +165,6 @@ public partial class WeaponPaints
|
|||||||
|
|
||||||
internal static IMenuApi? MenuApi;
|
internal static IMenuApi? MenuApi;
|
||||||
private static readonly PluginCapability<IMenuApi> MenuCapability = new("menu:nfcore");
|
private static readonly PluginCapability<IMenuApi> MenuCapability = new("menu:nfcore");
|
||||||
|
|
||||||
|
private int _fadeSeed;
|
||||||
}
|
}
|
||||||
145
WeaponAction.cs
@@ -20,27 +20,34 @@ namespace WeaponPaints
|
|||||||
|
|
||||||
bool isKnife = weapon.DesignerName.Contains("knife") || weapon.DesignerName.Contains("bayonet");
|
bool isKnife = weapon.DesignerName.Contains("knife") || weapon.DesignerName.Contains("bayonet");
|
||||||
|
|
||||||
if (isKnife && !GPlayersKnife.ContainsKey(player.Slot) ||
|
switch (isKnife)
|
||||||
isKnife && GPlayersKnife[player.Slot][player.Team] == "weapon_knife") return;
|
|
||||||
|
|
||||||
if (isKnife)
|
|
||||||
{
|
{
|
||||||
var newDefIndex = WeaponDefindex.FirstOrDefault(x => x.Value == GPlayersKnife[player.Slot][player.Team]);
|
case true when !HasChangedKnife(player, out var _):
|
||||||
if (newDefIndex.Key == 0) return;
|
return;
|
||||||
|
|
||||||
if (weapon.AttributeManager.Item.ItemDefinitionIndex != newDefIndex.Key)
|
case true:
|
||||||
{
|
{
|
||||||
SubclassChange(weapon, (ushort)newDefIndex.Key);
|
var newDefIndex = WeaponDefindex.FirstOrDefault(x => x.Value == GPlayersKnife[player.Slot][player.Team]);
|
||||||
}
|
if (newDefIndex.Key == 0) return;
|
||||||
|
|
||||||
weapon.AttributeManager.Item.ItemDefinitionIndex = (ushort)newDefIndex.Key;
|
if (weapon.AttributeManager.Item.ItemDefinitionIndex != newDefIndex.Key)
|
||||||
weapon.AttributeManager.Item.EntityQuality = 3;
|
{
|
||||||
|
SubclassChange(weapon, (ushort)newDefIndex.Key);
|
||||||
|
}
|
||||||
|
|
||||||
|
weapon.AttributeManager.Item.ItemDefinitionIndex = (ushort)newDefIndex.Key;
|
||||||
|
weapon.AttributeManager.Item.EntityQuality = 3;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
default:
|
||||||
|
weapon.AttributeManager.Item.EntityQuality = 0;
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
UpdatePlayerEconItemId(weapon.AttributeManager.Item);
|
UpdatePlayerEconItemId(weapon.AttributeManager.Item);
|
||||||
|
|
||||||
int weaponDefIndex = weapon.AttributeManager.Item.ItemDefinitionIndex;
|
int weaponDefIndex = weapon.AttributeManager.Item.ItemDefinitionIndex;
|
||||||
int fallbackPaintKit = 0;
|
int fallbackPaintKit;
|
||||||
|
|
||||||
weapon.AttributeManager.Item.AccountID = (uint)player.SteamID;
|
weapon.AttributeManager.Item.AccountID = (uint)player.SteamID;
|
||||||
|
|
||||||
@@ -48,7 +55,7 @@ namespace WeaponPaints
|
|||||||
bool isLegacyModel;
|
bool isLegacyModel;
|
||||||
|
|
||||||
if (_config.Additional.GiveRandomSkin &&
|
if (_config.Additional.GiveRandomSkin &&
|
||||||
!GPlayerWeaponsInfo[player.Slot][player.Team].ContainsKey(weaponDefIndex))
|
!HasChangedPaint(player, weaponDefIndex, out _))
|
||||||
{
|
{
|
||||||
// Random skins
|
// Random skins
|
||||||
weapon.FallbackPaintKit = GetRandomPaint(weaponDefIndex);
|
weapon.FallbackPaintKit = GetRandomPaint(weaponDefIndex);
|
||||||
@@ -81,9 +88,9 @@ namespace WeaponPaints
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!GPlayerWeaponsInfo[player.Slot][player.Team].TryGetValue(weaponDefIndex, out var value) || value.Paint == 0) return;
|
if (!HasChangedPaint(player, weaponDefIndex, out var weaponInfo) || weaponInfo == null)
|
||||||
|
return;
|
||||||
|
|
||||||
var weaponInfo = value;
|
|
||||||
//Log($"Apply on {weapon.DesignerName}({weapon.AttributeManager.Item.ItemDefinitionIndex}) paint {gPlayerWeaponPaints[steamId.SteamId64][weapon.AttributeManager.Item.ItemDefinitionIndex]} seed {gPlayerWeaponSeed[steamId.SteamId64][weapon.AttributeManager.Item.ItemDefinitionIndex]} wear {gPlayerWeaponWear[steamId.SteamId64][weapon.AttributeManager.Item.ItemDefinitionIndex]}");
|
//Log($"Apply on {weapon.DesignerName}({weapon.AttributeManager.Item.ItemDefinitionIndex}) paint {gPlayerWeaponPaints[steamId.SteamId64][weapon.AttributeManager.Item.ItemDefinitionIndex]} seed {gPlayerWeaponSeed[steamId.SteamId64][weapon.AttributeManager.Item.ItemDefinitionIndex]} wear {gPlayerWeaponWear[steamId.SteamId64][weapon.AttributeManager.Item.ItemDefinitionIndex]}");
|
||||||
|
|
||||||
weapon.AttributeManager.Item.AttributeList.Attributes.RemoveAll();
|
weapon.AttributeManager.Item.AttributeList.Attributes.RemoveAll();
|
||||||
@@ -94,12 +101,16 @@ namespace WeaponPaints
|
|||||||
weapon.AttributeManager.Item.ItemIDHigh = weapon.AttributeManager.Item.ItemIDLow >> 32;
|
weapon.AttributeManager.Item.ItemIDHigh = weapon.AttributeManager.Item.ItemIDLow >> 32;
|
||||||
weapon.AttributeManager.Item.CustomName = weaponInfo.Nametag;
|
weapon.AttributeManager.Item.CustomName = weaponInfo.Nametag;
|
||||||
weapon.FallbackPaintKit = weaponInfo.Paint;
|
weapon.FallbackPaintKit = weaponInfo.Paint;
|
||||||
weapon.FallbackSeed = weaponInfo.Seed;
|
|
||||||
|
weapon.FallbackSeed = weaponInfo is { Paint: 38, Seed: 0 } ? _fadeSeed++ : weaponInfo.Seed;
|
||||||
|
|
||||||
weapon.FallbackWear = weaponInfo.Wear;
|
weapon.FallbackWear = weaponInfo.Wear;
|
||||||
CAttributeListSetOrAddAttributeValueByName.Invoke(weapon.AttributeManager.Item.NetworkedDynamicAttributes.Handle, "set item texture prefab", weapon.FallbackPaintKit);
|
CAttributeListSetOrAddAttributeValueByName.Invoke(weapon.AttributeManager.Item.NetworkedDynamicAttributes.Handle, "set item texture prefab", weapon.FallbackPaintKit);
|
||||||
|
|
||||||
if (weaponInfo.StatTrak)
|
if (weaponInfo.StatTrak)
|
||||||
{
|
{
|
||||||
|
weapon.AttributeManager.Item.EntityQuality = 9;
|
||||||
|
|
||||||
CAttributeListSetOrAddAttributeValueByName.Invoke(weapon.AttributeManager.Item.NetworkedDynamicAttributes.Handle, "kill eater", ViewAsFloat((uint)weaponInfo.StatTrakCount));
|
CAttributeListSetOrAddAttributeValueByName.Invoke(weapon.AttributeManager.Item.NetworkedDynamicAttributes.Handle, "kill eater", ViewAsFloat((uint)weaponInfo.StatTrakCount));
|
||||||
CAttributeListSetOrAddAttributeValueByName.Invoke(weapon.AttributeManager.Item.NetworkedDynamicAttributes.Handle, "kill eater score type", 0);
|
CAttributeListSetOrAddAttributeValueByName.Invoke(weapon.AttributeManager.Item.NetworkedDynamicAttributes.Handle, "kill eater score type", 0);
|
||||||
|
|
||||||
@@ -112,8 +123,6 @@ namespace WeaponPaints
|
|||||||
if (fallbackPaintKit == 0)
|
if (fallbackPaintKit == 0)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
if (isKnife) return;
|
|
||||||
|
|
||||||
if (weaponInfo.KeyChain != null) SetKeychain(player, weapon);
|
if (weaponInfo.KeyChain != null) SetKeychain(player, weapon);
|
||||||
if (weaponInfo.Stickers.Count > 0) SetStickers(player, weapon);
|
if (weaponInfo.Stickers.Count > 0) SetStickers(player, weapon);
|
||||||
|
|
||||||
@@ -124,6 +133,7 @@ namespace WeaponPaints
|
|||||||
.ToList();
|
.ToList();
|
||||||
|
|
||||||
isLegacyModel = skinInfo.Count <= 0 || skinInfo[0].Value<bool>("legacy_model");
|
isLegacyModel = skinInfo.Count <= 0 || skinInfo[0].Value<bool>("legacy_model");
|
||||||
|
|
||||||
UpdatePlayerWeaponMeshGroupMask(player, weapon, isLegacyModel);
|
UpdatePlayerWeaponMeshGroupMask(player, weapon, isLegacyModel);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -131,9 +141,7 @@ namespace WeaponPaints
|
|||||||
private void IncrementWearForWeaponWithStickers(CCSPlayerController player, CBasePlayerWeapon weapon)
|
private void IncrementWearForWeaponWithStickers(CCSPlayerController player, CBasePlayerWeapon weapon)
|
||||||
{
|
{
|
||||||
int weaponDefIndex = weapon.AttributeManager.Item.ItemDefinitionIndex;
|
int weaponDefIndex = weapon.AttributeManager.Item.ItemDefinitionIndex;
|
||||||
if (!GPlayerWeaponsInfo.TryGetValue(player.Slot, out var playerWeapons) ||
|
if (!HasChangedPaint(player, weaponDefIndex, out var weaponInfo) || weaponInfo == null ||
|
||||||
!playerWeapons.TryGetValue(player.Team, out var weaponInfoDict) ||
|
|
||||||
!weaponInfoDict.TryGetValue(weaponDefIndex, out var weaponInfo) ||
|
|
||||||
weaponInfo.Stickers.Count <= 0) return;
|
weaponInfo.Stickers.Count <= 0) return;
|
||||||
|
|
||||||
float wearIncrement = 0.001f;
|
float wearIncrement = 0.001f;
|
||||||
@@ -156,11 +164,8 @@ namespace WeaponPaints
|
|||||||
|
|
||||||
int weaponDefIndex = weapon.AttributeManager.Item.ItemDefinitionIndex;
|
int weaponDefIndex = weapon.AttributeManager.Item.ItemDefinitionIndex;
|
||||||
|
|
||||||
if (!GPlayerWeaponsInfo.TryGetValue(player.Slot, out var playerWeapons) ||
|
if (!HasChangedPaint(player ,weaponDefIndex, out var weaponInfo) || weaponInfo == null)
|
||||||
!playerWeapons[player.Team].TryGetValue(weaponDefIndex, out var weaponInfo))
|
|
||||||
{
|
|
||||||
return;
|
return;
|
||||||
}
|
|
||||||
|
|
||||||
foreach (var sticker in weaponInfo.Stickers)
|
foreach (var sticker in weaponInfo.Stickers)
|
||||||
{
|
{
|
||||||
@@ -168,15 +173,13 @@ namespace WeaponPaints
|
|||||||
|
|
||||||
CAttributeListSetOrAddAttributeValueByName.Invoke(weapon.AttributeManager.Item.NetworkedDynamicAttributes.Handle,
|
CAttributeListSetOrAddAttributeValueByName.Invoke(weapon.AttributeManager.Item.NetworkedDynamicAttributes.Handle,
|
||||||
$"sticker slot {stickerSlot} id", ViewAsFloat(sticker.Id));
|
$"sticker slot {stickerSlot} id", ViewAsFloat(sticker.Id));
|
||||||
// CAttributeListSetOrAddAttributeValueByName.Invoke(weapon.AttributeManager.Item.NetworkedDynamicAttributes.Handle,
|
if (sticker.OffsetX != 0 || sticker.OffsetY != 0)
|
||||||
// $"sticker slot {stickerSlot} schema", stickerSlot);
|
CAttributeListSetOrAddAttributeValueByName.Invoke(weapon.AttributeManager.Item.NetworkedDynamicAttributes.Handle,
|
||||||
// if (stickerSlot == 5)
|
$"sticker slot {stickerSlot} schema", 0);
|
||||||
// {
|
|
||||||
CAttributeListSetOrAddAttributeValueByName.Invoke(weapon.AttributeManager.Item.NetworkedDynamicAttributes.Handle,
|
CAttributeListSetOrAddAttributeValueByName.Invoke(weapon.AttributeManager.Item.NetworkedDynamicAttributes.Handle,
|
||||||
$"sticker slot {stickerSlot} offset x", sticker.OffsetX);
|
$"sticker slot {stickerSlot} offset x", sticker.OffsetX);
|
||||||
CAttributeListSetOrAddAttributeValueByName.Invoke(weapon.AttributeManager.Item.NetworkedDynamicAttributes.Handle,
|
CAttributeListSetOrAddAttributeValueByName.Invoke(weapon.AttributeManager.Item.NetworkedDynamicAttributes.Handle,
|
||||||
$"sticker slot {stickerSlot} offset y", sticker.OffsetY);
|
$"sticker slot {stickerSlot} offset y", sticker.OffsetY);
|
||||||
// }
|
|
||||||
CAttributeListSetOrAddAttributeValueByName.Invoke(weapon.AttributeManager.Item.NetworkedDynamicAttributes.Handle,
|
CAttributeListSetOrAddAttributeValueByName.Invoke(weapon.AttributeManager.Item.NetworkedDynamicAttributes.Handle,
|
||||||
$"sticker slot {stickerSlot} wear", sticker.Wear);
|
$"sticker slot {stickerSlot} wear", sticker.Wear);
|
||||||
CAttributeListSetOrAddAttributeValueByName.Invoke(weapon.AttributeManager.Item.NetworkedDynamicAttributes.Handle,
|
CAttributeListSetOrAddAttributeValueByName.Invoke(weapon.AttributeManager.Item.NetworkedDynamicAttributes.Handle,
|
||||||
@@ -198,9 +201,9 @@ namespace WeaponPaints
|
|||||||
|
|
||||||
int weaponDefIndex = weapon.AttributeManager.Item.ItemDefinitionIndex;
|
int weaponDefIndex = weapon.AttributeManager.Item.ItemDefinitionIndex;
|
||||||
|
|
||||||
if (!GPlayerWeaponsInfo.TryGetValue(player.Slot, out var playerWeaponsInfo) ||
|
if (!HasChangedPaint(player, weaponDefIndex, out var value) || value?.KeyChain == null)
|
||||||
!playerWeaponsInfo[player.Team].TryGetValue(weaponDefIndex, out var value) ||
|
return;
|
||||||
value.KeyChain == null) return;
|
|
||||||
var keyChain = value.KeyChain;
|
var keyChain = value.KeyChain;
|
||||||
|
|
||||||
CAttributeListSetOrAddAttributeValueByName.Invoke(weapon.AttributeManager.Item.NetworkedDynamicAttributes.Handle,
|
CAttributeListSetOrAddAttributeValueByName.Invoke(weapon.AttributeManager.Item.NetworkedDynamicAttributes.Handle,
|
||||||
@@ -223,6 +226,7 @@ namespace WeaponPaints
|
|||||||
|
|
||||||
//string knifeToGive = (CsTeam)player.TeamNum == CsTeam.Terrorist ? "weapon_knife_t" : "weapon_knife";
|
//string knifeToGive = (CsTeam)player.TeamNum == CsTeam.Terrorist ? "weapon_knife_t" : "weapon_knife";
|
||||||
player.GiveNamedItem(CsItem.Knife);
|
player.GiveNamedItem(CsItem.Knife);
|
||||||
|
Utilities.SetStateChanged(player, "CCSPlayerController", "m_pInventoryServices");
|
||||||
}
|
}
|
||||||
|
|
||||||
private static bool PlayerHasKnife(CCSPlayerController? player)
|
private static bool PlayerHasKnife(CCSPlayerController? player)
|
||||||
@@ -265,6 +269,8 @@ namespace WeaponPaints
|
|||||||
if (player.Team is CsTeam.None or CsTeam.Spectator)
|
if (player.Team is CsTeam.None or CsTeam.Spectator)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
|
var hasKnife = false;
|
||||||
|
|
||||||
Dictionary<string, List<(int, int)>> weaponsWithAmmo = [];
|
Dictionary<string, List<(int, int)>> weaponsWithAmmo = [];
|
||||||
|
|
||||||
foreach (var weapon in weapons)
|
foreach (var weapon in weapons)
|
||||||
@@ -272,7 +278,7 @@ namespace WeaponPaints
|
|||||||
if (!weapon.IsValid || weapon.Value == null ||
|
if (!weapon.IsValid || weapon.Value == null ||
|
||||||
!weapon.Value.IsValid || !weapon.Value.DesignerName.Contains("weapon_"))
|
!weapon.Value.IsValid || !weapon.Value.DesignerName.Contains("weapon_"))
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
CCSWeaponBaseGun gun = weapon.Value.As<CCSWeaponBaseGun>();
|
CCSWeaponBaseGun gun = weapon.Value.As<CCSWeaponBaseGun>();
|
||||||
|
|
||||||
if (weapon.Value.Entity == null) continue;
|
if (weapon.Value.Entity == null) continue;
|
||||||
@@ -311,6 +317,7 @@ namespace WeaponPaints
|
|||||||
if (weaponData.GearSlot == gear_slot_t.GEAR_SLOT_KNIFE)
|
if (weaponData.GearSlot == gear_slot_t.GEAR_SLOT_KNIFE)
|
||||||
{
|
{
|
||||||
weapon.Value?.AddEntityIOEvent("Kill", weapon.Value, null, "", 0.1f);
|
weapon.Value?.AddEntityIOEvent("Kill", weapon.Value, null, "", 0.1f);
|
||||||
|
hasKnife = true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
catch (Exception ex)
|
catch (Exception ex)
|
||||||
@@ -322,9 +329,16 @@ namespace WeaponPaints
|
|||||||
AddTimer(0.23f, () =>
|
AddTimer(0.23f, () =>
|
||||||
{
|
{
|
||||||
if (!_gBCommandsAllowed) return;
|
if (!_gBCommandsAllowed) return;
|
||||||
|
|
||||||
if (!PlayerHasKnife(player))
|
if (!PlayerHasKnife(player) && hasKnife)
|
||||||
GiveKnifeToPlayer(player);
|
{
|
||||||
|
var newKnife = new CBasePlayerWeapon(player.GiveNamedItem(CsItem.Knife));
|
||||||
|
newKnife.AddEntityIOEvent("Kill", newKnife, null, "", 0.01f);
|
||||||
|
var newWeapon = new CBasePlayerWeapon(player.GiveNamedItem(CsItem.USP));
|
||||||
|
player.GiveNamedItem(CsItem.Knife);
|
||||||
|
player.ExecuteClientCommand("slot3");
|
||||||
|
newWeapon.AddEntityIOEvent("Kill", newWeapon, null, "", 0.01f);
|
||||||
|
}
|
||||||
|
|
||||||
foreach (var entry in weaponsWithAmmo)
|
foreach (var entry in weaponsWithAmmo)
|
||||||
{
|
{
|
||||||
@@ -377,9 +391,10 @@ namespace WeaponPaints
|
|||||||
return;
|
return;
|
||||||
|
|
||||||
if (!GPlayersGlove.TryGetValue(player.Slot, out var gloveInfo) ||
|
if (!GPlayersGlove.TryGetValue(player.Slot, out var gloveInfo) ||
|
||||||
!gloveInfo.TryGetValue(player.Team, out var gloveId) || gloveId == 0) return;
|
!gloveInfo.TryGetValue(player.Team, out var gloveId) ||
|
||||||
|
gloveId == 0 ||
|
||||||
WeaponInfo weaponInfo = GPlayerWeaponsInfo[player.Slot][player.Team][gloveId];
|
!HasChangedPaint(player, gloveId, out var weaponInfo) || weaponInfo == null)
|
||||||
|
return;
|
||||||
|
|
||||||
item.ItemDefinitionIndex = gloveId;
|
item.ItemDefinitionIndex = gloveId;
|
||||||
item.ItemIDLow = 16384 & 0xFFFFFFFF;
|
item.ItemIDLow = 16384 & 0xFFFFFFFF;
|
||||||
@@ -443,6 +458,7 @@ namespace WeaponPaints
|
|||||||
var viewModel = GetPlayerViewModel(player);
|
var viewModel = GetPlayerViewModel(player);
|
||||||
if (viewModel == null || viewModel.Weapon.Value == null ||
|
if (viewModel == null || viewModel.Weapon.Value == null ||
|
||||||
viewModel.Weapon.Value.Index != weapon.Index) return;
|
viewModel.Weapon.Value.Index != weapon.Index) return;
|
||||||
|
|
||||||
UpdateWeaponMeshGroupMask(viewModel, isLegacy);
|
UpdateWeaponMeshGroupMask(viewModel, isLegacy);
|
||||||
Utilities.SetStateChanged(viewModel, "CBaseEntity", "m_CBodyComponent");
|
Utilities.SetStateChanged(viewModel, "CBaseEntity", "m_CBodyComponent");
|
||||||
}
|
}
|
||||||
@@ -506,13 +522,22 @@ namespace WeaponPaints
|
|||||||
|
|
||||||
var myWeapons = pawn.WeaponServices?.MyWeapons;
|
var myWeapons = pawn.WeaponServices?.MyWeapons;
|
||||||
if (myWeapons == null) return;
|
if (myWeapons == null) return;
|
||||||
|
|
||||||
foreach (var handle in myWeapons)
|
foreach (var handle in myWeapons)
|
||||||
{
|
{
|
||||||
var weapon = handle.Value;
|
var weapon = handle.Value;
|
||||||
if (weapon != null && weapon.DesignerName.Contains("knife"))
|
|
||||||
|
if (weapon == null || !weapon.IsValid) continue;
|
||||||
|
if (myWeapons.Count == 1)
|
||||||
{
|
{
|
||||||
GivePlayerWeaponSkin(player, weapon);
|
var newWeapon = new CBasePlayerWeapon(player.GiveNamedItem(CsItem.USP));
|
||||||
|
weapon.AddEntityIOEvent("Kill", weapon, null, "", 0.01f);
|
||||||
|
player.GiveNamedItem(CsItem.Knife);
|
||||||
|
player.ExecuteClientCommand("slot3");
|
||||||
|
newWeapon.AddEntityIOEvent("Kill", newWeapon, null, "", 0.01f);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
GivePlayerWeaponSkin(player, weapon);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -543,6 +568,36 @@ namespace WeaponPaints
|
|||||||
return viewModel.Value == null ? null : viewModel.Value;
|
return viewModel.Value == null ? null : viewModel.Value;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private static bool HasChangedKnife(CCSPlayerController player, out string? knifeValue)
|
||||||
|
{
|
||||||
|
knifeValue = null;
|
||||||
|
|
||||||
|
// Check if player has knife info for their slot and team
|
||||||
|
if (!GPlayersKnife.TryGetValue(player.Slot, out var knife) ||
|
||||||
|
!knife.TryGetValue(player.Team, out var value) ||
|
||||||
|
value == "weapon_knife") return false;
|
||||||
|
knifeValue = value; // Assign the knife value to the out parameter
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
private static bool HasChangedPaint(CCSPlayerController player, int weaponDefIndex, out WeaponInfo? weaponInfo)
|
||||||
|
{
|
||||||
|
weaponInfo = null;
|
||||||
|
|
||||||
|
// Check if player has weapons info for their slot and team
|
||||||
|
if (!GPlayerWeaponsInfo.TryGetValue(player.Slot, out var teamInfo) ||
|
||||||
|
!teamInfo.TryGetValue(player.Team, out var teamWeapons))
|
||||||
|
{
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Check if the specified weapon has a paint/skin change
|
||||||
|
if (!teamWeapons.TryGetValue(weaponDefIndex, out var value) || value.Paint <= 0) return false;
|
||||||
|
|
||||||
|
weaponInfo = value; // Assign the out variable when it exists
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
private static float ViewAsFloat(uint value)
|
private static float ViewAsFloat(uint value)
|
||||||
{
|
{
|
||||||
return BitConverter.Int32BitsToSingle((int)value);
|
return BitConverter.Int32BitsToSingle((int)value);
|
||||||
|
|||||||
@@ -6,7 +6,7 @@
|
|||||||
public int Seed { get; set; }
|
public int Seed { get; set; }
|
||||||
public float Wear { get; set; }
|
public float Wear { get; set; }
|
||||||
public string Nametag { get; set; } = "";
|
public string Nametag { get; set; } = "";
|
||||||
public bool StatTrak { get; set; } = false;
|
public bool StatTrak { get; set; }
|
||||||
public int StatTrakCount { get; set; }
|
public int StatTrakCount { get; set; }
|
||||||
public KeyChainInfo? KeyChain { get; set; }
|
public KeyChainInfo? KeyChain { get; set; }
|
||||||
public List<StickerInfo> Stickers { get; set; } = new();
|
public List<StickerInfo> Stickers { get; set; } = new();
|
||||||
|
|||||||
@@ -16,7 +16,7 @@ public partial class WeaponPaints : BasePlugin, IPluginConfig<WeaponPaintsConfig
|
|||||||
public override string ModuleAuthor => "Nereziel & daffyy";
|
public override string ModuleAuthor => "Nereziel & daffyy";
|
||||||
public override string ModuleDescription => "Skin, gloves, agents and knife selector, standalone and web-based";
|
public override string ModuleDescription => "Skin, gloves, agents and knife selector, standalone and web-based";
|
||||||
public override string ModuleName => "WeaponPaints";
|
public override string ModuleName => "WeaponPaints";
|
||||||
public override string ModuleVersion => "2.9c";
|
public override string ModuleVersion => "3.1c";
|
||||||
|
|
||||||
public override void Load(bool hotReload)
|
public override void Load(bool hotReload)
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
using MySqlConnector;
|
using MySqlConnector;
|
||||||
using System.Collections.Concurrent;
|
using System.Collections.Concurrent;
|
||||||
using CounterStrikeSharp.API.Modules.Utils;
|
using CounterStrikeSharp.API.Modules.Utils;
|
||||||
|
using System.Globalization;
|
||||||
|
|
||||||
namespace WeaponPaints;
|
namespace WeaponPaints;
|
||||||
|
|
||||||
@@ -50,7 +50,7 @@ internal class WeaponSynchronization
|
|||||||
if (!_config.Additional.KnifeEnabled || string.IsNullOrEmpty(player?.SteamId))
|
if (!_config.Additional.KnifeEnabled || string.IsNullOrEmpty(player?.SteamId))
|
||||||
return;
|
return;
|
||||||
|
|
||||||
const string query = "SELECT `knife`, `weapon_team` FROM `wp_player_knife` WHERE `steamid` = @steamid";
|
const string query = "SELECT `knife`, `weapon_team` FROM `wp_player_knife` WHERE `steamid` = @steamid ORDER BY `weapon_team` ASC";
|
||||||
var rows = connection.Query<dynamic>(query, new { steamid = player.SteamId }); // Retrieve all records for the player
|
var rows = connection.Query<dynamic>(query, new { steamid = player.SteamId }); // Retrieve all records for the player
|
||||||
|
|
||||||
foreach (var row in rows)
|
foreach (var row in rows)
|
||||||
@@ -61,9 +61,9 @@ internal class WeaponSynchronization
|
|||||||
// Determine the weapon team based on the query result
|
// Determine the weapon team based on the query result
|
||||||
CsTeam weaponTeam = (int)row.weapon_team switch
|
CsTeam weaponTeam = (int)row.weapon_team switch
|
||||||
{
|
{
|
||||||
0 => CsTeam.None,
|
|
||||||
2 => CsTeam.Terrorist,
|
2 => CsTeam.Terrorist,
|
||||||
_ => CsTeam.CounterTerrorist
|
3 => CsTeam.CounterTerrorist,
|
||||||
|
_ => CsTeam.None,
|
||||||
};
|
};
|
||||||
|
|
||||||
// Get or create entries for the player’s slot
|
// Get or create entries for the player’s slot
|
||||||
@@ -95,7 +95,7 @@ internal class WeaponSynchronization
|
|||||||
if (!_config.Additional.GloveEnabled || string.IsNullOrEmpty(player?.SteamId))
|
if (!_config.Additional.GloveEnabled || string.IsNullOrEmpty(player?.SteamId))
|
||||||
return;
|
return;
|
||||||
|
|
||||||
const string query = "SELECT `weapon_defindex`, `weapon_team` FROM `wp_player_gloves` WHERE `steamid` = @steamid";
|
const string query = "SELECT `weapon_defindex`, `weapon_team` FROM `wp_player_gloves` WHERE `steamid` = @steamid ORDER BY `weapon_team` ASC";
|
||||||
var rows = connection.Query<dynamic>(query, new { steamid = player.SteamId }); // Retrieve all records for the player
|
var rows = connection.Query<dynamic>(query, new { steamid = player.SteamId }); // Retrieve all records for the player
|
||||||
|
|
||||||
foreach (var row in rows)
|
foreach (var row in rows)
|
||||||
@@ -106,9 +106,9 @@ internal class WeaponSynchronization
|
|||||||
var playerGloves = WeaponPaints.GPlayersGlove.GetOrAdd(player.Slot, _ => new ConcurrentDictionary<CsTeam, ushort>());
|
var playerGloves = WeaponPaints.GPlayersGlove.GetOrAdd(player.Slot, _ => new ConcurrentDictionary<CsTeam, ushort>());
|
||||||
CsTeam weaponTeam = (int)row.weapon_team switch
|
CsTeam weaponTeam = (int)row.weapon_team switch
|
||||||
{
|
{
|
||||||
0 => CsTeam.None,
|
|
||||||
2 => CsTeam.Terrorist,
|
2 => CsTeam.Terrorist,
|
||||||
_ => CsTeam.CounterTerrorist
|
3 => CsTeam.CounterTerrorist,
|
||||||
|
_ => CsTeam.None,
|
||||||
};
|
};
|
||||||
|
|
||||||
// Get or create entries for the player’s slot
|
// Get or create entries for the player’s slot
|
||||||
@@ -172,36 +172,35 @@ internal class WeaponSynchronization
|
|||||||
|
|
||||||
// var weaponInfos = new ConcurrentDictionary<int, WeaponInfo>();
|
// var weaponInfos = new ConcurrentDictionary<int, WeaponInfo>();
|
||||||
|
|
||||||
const string query = "SELECT * FROM `wp_player_skins` WHERE `steamid` = @steamid";
|
const string query = "SELECT * FROM `wp_player_skins` WHERE `steamid` = @steamid ORDER BY `weapon_team` ASC";
|
||||||
var playerSkins = connection.Query<dynamic>(query, new { steamid = player.SteamId });
|
var playerSkins = connection.Query<dynamic>(query, new { steamid = player.SteamId });
|
||||||
|
|
||||||
foreach (var row in playerSkins)
|
foreach (var row in playerSkins)
|
||||||
{
|
{
|
||||||
int weaponDefIndex = row?.weapon_defindex ?? 0;
|
int weaponDefIndex = row.weapon_defindex ?? 0;
|
||||||
int weaponPaintId = row?.weapon_paint_id ?? 0;
|
int weaponPaintId = row.weapon_paint_id ?? 0;
|
||||||
float weaponWear = row?.weapon_wear ?? 0f;
|
float weaponWear = row.weapon_wear ?? 0f;
|
||||||
int weaponSeed = row?.weapon_seed ?? 0;
|
int weaponSeed = row.weapon_seed ?? 0;
|
||||||
string weaponNameTag = row?.weapon_nametag ?? "";
|
string weaponNameTag = row.weapon_nametag ?? "";
|
||||||
bool weaponStatTrak = row?.weapon_stattrak ?? false;
|
bool weaponStatTrak = row.weapon_stattrak ?? false;
|
||||||
int weaponStatTrakCount = row?.weapon_stattrak_count ?? 0;
|
int weaponStatTrakCount = row.weapon_stattrak_count ?? 0;
|
||||||
|
|
||||||
CsTeam weaponTeam = row?.weapon_team switch
|
CsTeam weaponTeam = row.weapon_team switch
|
||||||
{
|
{
|
||||||
null => CsTeam.None,
|
|
||||||
0 => CsTeam.None,
|
|
||||||
2 => CsTeam.Terrorist,
|
2 => CsTeam.Terrorist,
|
||||||
_ => CsTeam.CounterTerrorist
|
3 => CsTeam.CounterTerrorist,
|
||||||
|
_ => CsTeam.None,
|
||||||
};
|
};
|
||||||
|
|
||||||
string[]? keyChainParts = row?.weapon_keychain?.ToString().Split(';');
|
string[]? keyChainParts = row.weapon_keychain?.ToString().Split(';');
|
||||||
|
|
||||||
KeyChainInfo keyChainInfo = new KeyChainInfo();
|
KeyChainInfo keyChainInfo = new KeyChainInfo();
|
||||||
|
|
||||||
if (keyChainParts!.Length == 5 &&
|
if (keyChainParts!.Length == 5 &&
|
||||||
uint.TryParse(keyChainParts[0], out uint keyChainId) &&
|
uint.TryParse(keyChainParts[0], out uint keyChainId) &&
|
||||||
float.TryParse(keyChainParts[1], out float keyChainOffsetX) &&
|
float.TryParse(keyChainParts[1], NumberStyles.Float, CultureInfo.InvariantCulture, out float keyChainOffsetX) &&
|
||||||
float.TryParse(keyChainParts[2], out float keyChainOffsetY) &&
|
float.TryParse(keyChainParts[2], NumberStyles.Float, CultureInfo.InvariantCulture, out float keyChainOffsetY) &&
|
||||||
float.TryParse(keyChainParts[3], out float keyChainOffsetZ) &&
|
float.TryParse(keyChainParts[3], NumberStyles.Float, CultureInfo.InvariantCulture, out float keyChainOffsetZ) &&
|
||||||
uint.TryParse(keyChainParts[4], out uint keyChainSeed))
|
uint.TryParse(keyChainParts[4], out uint keyChainSeed))
|
||||||
{
|
{
|
||||||
// Successfully parsed the values
|
// Successfully parsed the values
|
||||||
@@ -248,11 +247,11 @@ internal class WeaponSynchronization
|
|||||||
if (parts.Length != 7 ||
|
if (parts.Length != 7 ||
|
||||||
!uint.TryParse(parts[0], out uint stickerId) ||
|
!uint.TryParse(parts[0], out uint stickerId) ||
|
||||||
!uint.TryParse(parts[1], out uint stickerSchema) ||
|
!uint.TryParse(parts[1], out uint stickerSchema) ||
|
||||||
!float.TryParse(parts[2], out float stickerOffsetX) ||
|
!float.TryParse(parts[2], NumberStyles.Float, CultureInfo.InvariantCulture, out float stickerOffsetX) ||
|
||||||
!float.TryParse(parts[3], out float stickerOffsetY) ||
|
!float.TryParse(parts[3], NumberStyles.Float, CultureInfo.InvariantCulture, out float stickerOffsetY) ||
|
||||||
!float.TryParse(parts[4], out float stickerWear) ||
|
!float.TryParse(parts[4], NumberStyles.Float, CultureInfo.InvariantCulture, out float stickerWear) ||
|
||||||
!float.TryParse(parts[5], out float stickerScale) ||
|
!float.TryParse(parts[5], NumberStyles.Float, CultureInfo.InvariantCulture, out float stickerScale) ||
|
||||||
!float.TryParse(parts[6], out float stickerRotation)) continue;
|
!float.TryParse(parts[6], NumberStyles.Float, CultureInfo.InvariantCulture, out float stickerRotation)) continue;
|
||||||
|
|
||||||
StickerInfo stickerInfo = new StickerInfo
|
StickerInfo stickerInfo = new StickerInfo
|
||||||
{
|
{
|
||||||
@@ -303,7 +302,7 @@ internal class WeaponSynchronization
|
|||||||
if (!_config.Additional.MusicEnabled || string.IsNullOrEmpty(player?.SteamId))
|
if (!_config.Additional.MusicEnabled || string.IsNullOrEmpty(player?.SteamId))
|
||||||
return;
|
return;
|
||||||
|
|
||||||
const string query = "SELECT `music_id`, `weapon_team` FROM `wp_player_music` WHERE `steamid` = @steamid";
|
const string query = "SELECT `music_id`, `weapon_team` FROM `wp_player_music` WHERE `steamid` = @steamid ORDER BY `weapon_team` ASC";
|
||||||
var rows = connection.Query<dynamic>(query, new { steamid = player.SteamId }); // Retrieve all records for the player
|
var rows = connection.Query<dynamic>(query, new { steamid = player.SteamId }); // Retrieve all records for the player
|
||||||
|
|
||||||
foreach (var row in rows)
|
foreach (var row in rows)
|
||||||
@@ -314,9 +313,9 @@ internal class WeaponSynchronization
|
|||||||
// Determine the weapon team based on the query result
|
// Determine the weapon team based on the query result
|
||||||
CsTeam weaponTeam = (int)row.weapon_team switch
|
CsTeam weaponTeam = (int)row.weapon_team switch
|
||||||
{
|
{
|
||||||
0 => CsTeam.None,
|
|
||||||
2 => CsTeam.Terrorist,
|
2 => CsTeam.Terrorist,
|
||||||
_ => CsTeam.CounterTerrorist
|
3 => CsTeam.CounterTerrorist,
|
||||||
|
_ => CsTeam.None,
|
||||||
};
|
};
|
||||||
|
|
||||||
// Get or create entries for the player’s slot
|
// Get or create entries for the player’s slot
|
||||||
@@ -348,7 +347,7 @@ internal class WeaponSynchronization
|
|||||||
if (string.IsNullOrEmpty(player?.SteamId))
|
if (string.IsNullOrEmpty(player?.SteamId))
|
||||||
return;
|
return;
|
||||||
|
|
||||||
const string query = "SELECT `id`, `weapon_team` FROM `wp_player_pins` WHERE `steamid` = @steamid";
|
const string query = "SELECT `id`, `weapon_team` FROM `wp_player_pins` WHERE `steamid` = @steamid ORDER BY `weapon_team` ASC";
|
||||||
var rows = connection.Query<dynamic>(query, new { steamid = player.SteamId }); // Retrieve all records for the player
|
var rows = connection.Query<dynamic>(query, new { steamid = player.SteamId }); // Retrieve all records for the player
|
||||||
|
|
||||||
foreach (var row in rows)
|
foreach (var row in rows)
|
||||||
@@ -359,9 +358,9 @@ internal class WeaponSynchronization
|
|||||||
// Determine the weapon team based on the query result
|
// Determine the weapon team based on the query result
|
||||||
CsTeam weaponTeam = (int)row.weapon_team switch
|
CsTeam weaponTeam = (int)row.weapon_team switch
|
||||||
{
|
{
|
||||||
0 => CsTeam.None,
|
|
||||||
2 => CsTeam.Terrorist,
|
2 => CsTeam.Terrorist,
|
||||||
_ => CsTeam.CounterTerrorist
|
3 => CsTeam.CounterTerrorist,
|
||||||
|
_ => CsTeam.None,
|
||||||
};
|
};
|
||||||
|
|
||||||
// Get or create entries for the player’s slot
|
// Get or create entries for the player’s slot
|
||||||
@@ -566,7 +565,6 @@ internal class WeaponSynchronization
|
|||||||
internal async Task SyncStatTrakToDatabase(PlayerInfo player)
|
internal async Task SyncStatTrakToDatabase(PlayerInfo player)
|
||||||
{
|
{
|
||||||
if (WeaponPaints.WeaponSync == null || WeaponPaints.GPlayerWeaponsInfo.IsEmpty) return;
|
if (WeaponPaints.WeaponSync == null || WeaponPaints.GPlayerWeaponsInfo.IsEmpty) return;
|
||||||
|
|
||||||
if (string.IsNullOrEmpty(player.SteamId))
|
if (string.IsNullOrEmpty(player.SteamId))
|
||||||
return;
|
return;
|
||||||
|
|
||||||
@@ -578,7 +576,7 @@ internal class WeaponSynchronization
|
|||||||
// Check if player's slot exists in GPlayerWeaponsInfo
|
// Check if player's slot exists in GPlayerWeaponsInfo
|
||||||
if (!WeaponPaints.GPlayerWeaponsInfo.TryGetValue(player.Slot, out var teamWeaponsInfo))
|
if (!WeaponPaints.GPlayerWeaponsInfo.TryGetValue(player.Slot, out var teamWeaponsInfo))
|
||||||
return;
|
return;
|
||||||
|
|
||||||
// Iterate through each team in the player's weapon info
|
// Iterate through each team in the player's weapon info
|
||||||
foreach (var teamInfo in teamWeaponsInfo)
|
foreach (var teamInfo in teamWeaponsInfo)
|
||||||
{
|
{
|
||||||
@@ -587,27 +585,33 @@ internal class WeaponSynchronization
|
|||||||
|
|
||||||
// Get StatTrak weapons for the current team
|
// Get StatTrak weapons for the current team
|
||||||
var statTrakWeapons = weaponInfos
|
var statTrakWeapons = weaponInfos
|
||||||
.Where(w => w.Value is { StatTrak: true, StatTrakCount: > 0 })
|
.ToDictionary(
|
||||||
.ToDictionary(w => w.Key, w => w.Value.StatTrakCount);
|
w => w.Key,
|
||||||
|
w => (w.Value.StatTrak, w.Value.StatTrakCount) // Store both StatTrak and StatTrakCount in a tuple
|
||||||
|
);
|
||||||
|
|
||||||
// Check if there are StatTrak weapons to sync
|
// Check if there are StatTrak weapons to sync
|
||||||
if (statTrakWeapons.Count == 0) continue;
|
if (statTrakWeapons.Count == 0) continue;
|
||||||
|
|
||||||
// Get the current team ID
|
// Get the current team ID
|
||||||
int weaponTeam = (int)teamInfo.Key;
|
int weaponTeam = (int)teamInfo.Key;
|
||||||
|
|
||||||
// Sync StatTrak values for the current team
|
// Sync StatTrak values for the current team
|
||||||
foreach (var (defindex, statTrakCount) in statTrakWeapons)
|
foreach (var (defindex, (statTrak, statTrakCount)) in statTrakWeapons)
|
||||||
{
|
{
|
||||||
const string query = @"
|
const string query = @"
|
||||||
INSERT INTO `wp_player_skins` (`steamid`, `weapon_defindex`, `weapon_stattrak_count`, `weapon_team`)
|
UPDATE `wp_player_skins`
|
||||||
VALUES (@steamid, @weaponDefIndex, @StatTrakCount, @weaponTeam)
|
SET `weapon_stattrak` = @StatTrak,
|
||||||
ON DUPLICATE KEY UPDATE `weapon_stattrak_count` = @StatTrakCount";
|
`weapon_stattrak_count` = @StatTrakCount
|
||||||
|
WHERE `steamid` = @steamid
|
||||||
|
AND `weapon_defindex` = @weaponDefIndex
|
||||||
|
AND `weapon_team` = @weaponTeam";
|
||||||
|
|
||||||
var parameters = new
|
var parameters = new
|
||||||
{
|
{
|
||||||
steamid = player.SteamId,
|
steamid = player.SteamId,
|
||||||
weaponDefIndex = defindex,
|
weaponDefIndex = defindex,
|
||||||
|
StatTrak = statTrak,
|
||||||
StatTrakCount = statTrakCount,
|
StatTrakCount = statTrakCount,
|
||||||
weaponTeam
|
weaponTeam
|
||||||
};
|
};
|
||||||
|
|||||||
30
lang/cs.json
Normal file
@@ -0,0 +1,30 @@
|
|||||||
|
{
|
||||||
|
"wp_prefix": "{lightblue}[WeaponPaints] {default}",
|
||||||
|
"wp_info_website": "Navštiv {lime}{0}{default} kde si můžeš změnit skiny",
|
||||||
|
"wp_info_refresh": "Napiš {lime}!wp{default} pro synchronizaci vybraných skinů",
|
||||||
|
"wp_info_knife": "Napiš {lime}!knife{default} pro otevření menu nožů",
|
||||||
|
"wp_info_glove": "Napiš {lime}!gloves{default} pro otevření menu rukavic",
|
||||||
|
"wp_info_agent": "Napiš {lime}!agents{default} pro otevření menu agentů",
|
||||||
|
"wp_info_music": "Napiš {lime}!music{default} pro otevření menu MVP hudeb",
|
||||||
|
"wp_info_pin": "Napiš {lime}!pins{default} pro otevření menu odznaků",
|
||||||
|
"wp_command_cooldown": "{lightred}Skiny nelze nýni obnovit!",
|
||||||
|
"wp_command_refresh_done": "{lime}Obnovuji skiny",
|
||||||
|
"wp_knife_menu_select": "Vybral jsi si {lime}{0}{default} jako tvůj nůž",
|
||||||
|
"wp_knife_menu_kill": "",
|
||||||
|
"wp_knife_menu_title": "Menu nožů",
|
||||||
|
"wp_glove_menu_select": "Vybral jsi si {lime}{0}{default} jako tvoje rukavice",
|
||||||
|
"wp_glove_menu_title": "Menu rukavic",
|
||||||
|
"wp_agent_menu_select": "Vybral jsi si {lime}{0}{default} jako tvůj agent",
|
||||||
|
"wp_agent_menu_title": "Menu agentů",
|
||||||
|
"wp_music_menu_title": "Menu MVP hudeb",
|
||||||
|
"wp_music_menu_select": "Vybral jsi si {lime}{0}{default} jako tvojí MVP hudbu",
|
||||||
|
"wp_pins_menu_title": "Menu odznaků",
|
||||||
|
"wp_pins_menu_select": "Vybral jsi si {lime}{0}{default} jako tvůj odznak",
|
||||||
|
"wp_skin_menu_weapon_title": "Menu zbraní",
|
||||||
|
"wp_skin_menu_skin_title": "Vyběr skinů pro {lime}{0}{default}",
|
||||||
|
"wp_skin_menu_select": "Vybral jsi si {lime}{0}{default} jako tvůj skin",
|
||||||
|
|
||||||
|
"wp_stattrak_action": "Úspěšně jste změnil nastavení stattraku",
|
||||||
|
|
||||||
|
"None": "Žádné"
|
||||||
|
}
|
||||||
@@ -24,5 +24,7 @@
|
|||||||
"wp_skin_menu_skin_title": "Select skin for {lime}{0}{default}",
|
"wp_skin_menu_skin_title": "Select skin for {lime}{0}{default}",
|
||||||
"wp_skin_menu_select": "You have chosen {lime}{0}{default} as your skin",
|
"wp_skin_menu_select": "You have chosen {lime}{0}{default} as your skin",
|
||||||
|
|
||||||
|
"wp_stattrak_action": "You have successfully changed the stattrak setting",
|
||||||
|
|
||||||
"None": "None"
|
"None": "None"
|
||||||
}
|
}
|
||||||
@@ -23,6 +23,8 @@
|
|||||||
"wp_skin_menu_weapon_title": "Ieroču Izvēlne",
|
"wp_skin_menu_weapon_title": "Ieroču Izvēlne",
|
||||||
"wp_skin_menu_skin_title": "Izvēlieties ādu priekš {lime}{0}{default}",
|
"wp_skin_menu_skin_title": "Izvēlieties ādu priekš {lime}{0}{default}",
|
||||||
"wp_skin_menu_select": "Jūs esat izvēlējies {lime}{0}{default} kā savu ādu",
|
"wp_skin_menu_select": "Jūs esat izvēlējies {lime}{0}{default} kā savu ādu",
|
||||||
|
|
||||||
|
"wp_stattrak_action": "Jūs veiksmīgi mainījāt stattrak iestatījumu",
|
||||||
|
|
||||||
"None": "Nav"
|
"None": "Nav"
|
||||||
}
|
}
|
||||||
@@ -24,5 +24,7 @@
|
|||||||
"wp_skin_menu_skin_title": "Wybierz skórkę dla {lime}{0}{default}",
|
"wp_skin_menu_skin_title": "Wybierz skórkę dla {lime}{0}{default}",
|
||||||
"wp_skin_menu_select": "Wybrałeś {lime}{0}{default} jako swoją skórkę",
|
"wp_skin_menu_select": "Wybrałeś {lime}{0}{default} jako swoją skórkę",
|
||||||
|
|
||||||
|
"wp_stattrak_action": "Pomyślnie zmieniłeś ustawienie stattraka",
|
||||||
|
|
||||||
"None": "Brak"
|
"None": "Brak"
|
||||||
}
|
}
|
||||||
@@ -24,5 +24,7 @@
|
|||||||
"wp_skin_menu_skin_title": "Selecione a skin para {lime}{0}{default}",
|
"wp_skin_menu_skin_title": "Selecione a skin para {lime}{0}{default}",
|
||||||
"wp_skin_menu_select": "Você escolheu {lime}{0}{default} como sua skin",
|
"wp_skin_menu_select": "Você escolheu {lime}{0}{default} como sua skin",
|
||||||
|
|
||||||
|
"wp_stattrak_action": "Você alterou a configuração de stattrak com sucesso",
|
||||||
|
|
||||||
"None": "Nenhum"
|
"None": "Nenhum"
|
||||||
}
|
}
|
||||||
@@ -24,5 +24,7 @@
|
|||||||
"wp_skin_menu_skin_title": "Selecione a skin para {lime}{0}{default}",
|
"wp_skin_menu_skin_title": "Selecione a skin para {lime}{0}{default}",
|
||||||
"wp_skin_menu_select": "Escolheu {lime}{0}{default} como a sua skin",
|
"wp_skin_menu_select": "Escolheu {lime}{0}{default} como a sua skin",
|
||||||
|
|
||||||
|
"wp_stattrak_action": "Alterou com sucesso a configuração do stattrak",
|
||||||
|
|
||||||
"None": "Nenhum"
|
"None": "Nenhum"
|
||||||
}
|
}
|
||||||
@@ -24,5 +24,7 @@
|
|||||||
"wp_skin_menu_skin_title": "Выберите скин для {lime}{0}{default}",
|
"wp_skin_menu_skin_title": "Выберите скин для {lime}{0}{default}",
|
||||||
"wp_skin_menu_select": "Вы выбрали {lime}{0}{default} в качестве вашего скина",
|
"wp_skin_menu_select": "Вы выбрали {lime}{0}{default} в качестве вашего скина",
|
||||||
|
|
||||||
|
"wp_stattrak_action": "Вы успешно изменили настройки статтрак",
|
||||||
|
|
||||||
"None": "Нет"
|
"None": "Нет"
|
||||||
}
|
}
|
||||||
@@ -24,5 +24,7 @@
|
|||||||
"wp_skin_menu_skin_title": "{lime}{0}{default} için cilt seçin",
|
"wp_skin_menu_skin_title": "{lime}{0}{default} için cilt seçin",
|
||||||
"wp_skin_menu_select": "{lime}{0}{default} olarak cildinizi seçtiniz",
|
"wp_skin_menu_select": "{lime}{0}{default} olarak cildinizi seçtiniz",
|
||||||
|
|
||||||
|
"wp_stattrak_action": "StatTrak ayarını başarıyla değiştirdiniz",
|
||||||
|
|
||||||
"None": "Hiçbiri"
|
"None": "Hiçbiri"
|
||||||
}
|
}
|
||||||
@@ -24,5 +24,7 @@
|
|||||||
"wp_skin_menu_skin_title": "Виберіть шкіру для {lime}{0}{default}",
|
"wp_skin_menu_skin_title": "Виберіть шкіру для {lime}{0}{default}",
|
||||||
"wp_skin_menu_select": "Ви обрали {lime}{0}{default} як свою шкіру",
|
"wp_skin_menu_select": "Ви обрали {lime}{0}{default} як свою шкіру",
|
||||||
|
|
||||||
|
"wp_stattrak_action": "Ви успішно змінили налаштування статтрака",
|
||||||
|
|
||||||
"None": "Немає"
|
"None": "Немає"
|
||||||
}
|
}
|
||||||
@@ -24,5 +24,7 @@
|
|||||||
"wp_skin_menu_skin_title": "选择 {lime}{0}{default} 的皮肤",
|
"wp_skin_menu_skin_title": "选择 {lime}{0}{default} 的皮肤",
|
||||||
"wp_skin_menu_select": "您选择了 {lime}{0}{default} 作为您的皮肤",
|
"wp_skin_menu_select": "您选择了 {lime}{0}{default} 作为您的皮肤",
|
||||||
|
|
||||||
|
"wp_stattrak_action": "您已成功更改 StatTrak 设置",
|
||||||
|
|
||||||
"None": "无"
|
"None": "无"
|
||||||
}
|
}
|
||||||
@@ -403,5 +403,10 @@
|
|||||||
"id": "85",
|
"id": "85",
|
||||||
"name": "Музикален комплект | Tree Adams — Seventh Moon",
|
"name": "Музикален комплект | Tree Adams — Seventh Moon",
|
||||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png"
|
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "86",
|
||||||
|
"name": "Музикален комплект | Perfect World, Ay Hey",
|
||||||
|
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-86.png"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
@@ -403,5 +403,10 @@
|
|||||||
"id": "85",
|
"id": "85",
|
||||||
"name": "Hudební balíček | Tree Adams – Seventh Moon",
|
"name": "Hudební balíček | Tree Adams – Seventh Moon",
|
||||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png"
|
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "86",
|
||||||
|
"name": "Hudební balíček | Perfect World, Ay Hey",
|
||||||
|
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-86.png"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
@@ -403,5 +403,10 @@
|
|||||||
"id": "85",
|
"id": "85",
|
||||||
"name": "Musiksæt | Tree Adams, Seventh Moon",
|
"name": "Musiksæt | Tree Adams, Seventh Moon",
|
||||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png"
|
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "86",
|
||||||
|
"name": "Musiksæt | Perfect World, Ay Hey",
|
||||||
|
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-86.png"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
@@ -403,5 +403,10 @@
|
|||||||
"id": "85",
|
"id": "85",
|
||||||
"name": "Musikkit | Tree Adams, Seventh Moon",
|
"name": "Musikkit | Tree Adams, Seventh Moon",
|
||||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png"
|
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "86",
|
||||||
|
"name": "Musikkit | Perfect World, Ay Hey",
|
||||||
|
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-86.png"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
@@ -403,5 +403,10 @@
|
|||||||
"id": "85",
|
"id": "85",
|
||||||
"name": "Μουσικό κουτί | Tree Adams, Seventh Moon",
|
"name": "Μουσικό κουτί | Tree Adams, Seventh Moon",
|
||||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png"
|
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "86",
|
||||||
|
"name": "Μουσικό κουτί | Perfect World, Ay Hey",
|
||||||
|
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-86.png"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
@@ -403,5 +403,10 @@
|
|||||||
"id": "85",
|
"id": "85",
|
||||||
"name": "Music Kit | Tree Adams, Seventh Moon",
|
"name": "Music Kit | Tree Adams, Seventh Moon",
|
||||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png"
|
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "86",
|
||||||
|
"name": "Music Kit | Perfect World, Ay Hey",
|
||||||
|
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-86.png"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
@@ -403,5 +403,10 @@
|
|||||||
"id": "85",
|
"id": "85",
|
||||||
"name": "Kit de música | Tree Adams, Seventh Moon",
|
"name": "Kit de música | Tree Adams, Seventh Moon",
|
||||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png"
|
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "86",
|
||||||
|
"name": "Kit de música | Perfect World, Ay Hey",
|
||||||
|
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-86.png"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
@@ -403,5 +403,10 @@
|
|||||||
"id": "85",
|
"id": "85",
|
||||||
"name": "Kit de música | Tree Adams, Seventh Moon",
|
"name": "Kit de música | Tree Adams, Seventh Moon",
|
||||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png"
|
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "86",
|
||||||
|
"name": "Kit de música | Perfect World, Ay Hey",
|
||||||
|
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-86.png"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
@@ -403,5 +403,10 @@
|
|||||||
"id": "85",
|
"id": "85",
|
||||||
"name": "Musiikkipakkaus | Tree Adams: Seventh Moon",
|
"name": "Musiikkipakkaus | Tree Adams: Seventh Moon",
|
||||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png"
|
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "86",
|
||||||
|
"name": "Musiikkipakkaus | Perfect World, Ay Hey",
|
||||||
|
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-86.png"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
@@ -403,5 +403,10 @@
|
|||||||
"id": "85",
|
"id": "85",
|
||||||
"name": "Kit de musiques | Tree Adams, Seventh Moon",
|
"name": "Kit de musiques | Tree Adams, Seventh Moon",
|
||||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png"
|
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "86",
|
||||||
|
"name": "Kit de musiques | Perfect World, Ay Hey",
|
||||||
|
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-86.png"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
@@ -403,5 +403,10 @@
|
|||||||
"id": "85",
|
"id": "85",
|
||||||
"name": "Zenekészlet | Tree Adams - Seventh Moon",
|
"name": "Zenekészlet | Tree Adams - Seventh Moon",
|
||||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png"
|
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "86",
|
||||||
|
"name": "Zenekészlet | Perfect World, Ay Hey",
|
||||||
|
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-86.png"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
@@ -403,5 +403,10 @@
|
|||||||
"id": "85",
|
"id": "85",
|
||||||
"name": "Tema musicale | Tree Adams, Seventh Moon",
|
"name": "Tema musicale | Tree Adams, Seventh Moon",
|
||||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png"
|
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "86",
|
||||||
|
"name": "Tema musicale | Perfect World, Ay Hey",
|
||||||
|
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-86.png"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
@@ -403,5 +403,10 @@
|
|||||||
"id": "85",
|
"id": "85",
|
||||||
"name": "ミュージックキット | Tree Adams, Seventh Moon",
|
"name": "ミュージックキット | Tree Adams, Seventh Moon",
|
||||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png"
|
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "86",
|
||||||
|
"name": "ミュージックキット | Perfect World, Ay Hey",
|
||||||
|
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-86.png"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
@@ -403,5 +403,10 @@
|
|||||||
"id": "85",
|
"id": "85",
|
||||||
"name": "Музикален комплект | Tree Adams — Seventh Moon",
|
"name": "Музикален комплект | Tree Adams — Seventh Moon",
|
||||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png"
|
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "86",
|
||||||
|
"name": "Музикален комплект | Perfect World, Ay Hey",
|
||||||
|
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-86.png"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
@@ -403,5 +403,10 @@
|
|||||||
"id": "85",
|
"id": "85",
|
||||||
"name": "Hudební balíček | Tree Adams – Seventh Moon",
|
"name": "Hudební balíček | Tree Adams – Seventh Moon",
|
||||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png"
|
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "86",
|
||||||
|
"name": "Hudební balíček | Perfect World, Ay Hey",
|
||||||
|
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-86.png"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
@@ -403,5 +403,10 @@
|
|||||||
"id": "85",
|
"id": "85",
|
||||||
"name": "Musiksæt | Tree Adams, Seventh Moon",
|
"name": "Musiksæt | Tree Adams, Seventh Moon",
|
||||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png"
|
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "86",
|
||||||
|
"name": "Musiksæt | Perfect World, Ay Hey",
|
||||||
|
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-86.png"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
@@ -403,5 +403,10 @@
|
|||||||
"id": "85",
|
"id": "85",
|
||||||
"name": "Musikkit | Tree Adams, Seventh Moon",
|
"name": "Musikkit | Tree Adams, Seventh Moon",
|
||||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png"
|
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "86",
|
||||||
|
"name": "Musikkit | Perfect World, Ay Hey",
|
||||||
|
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-86.png"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
@@ -403,5 +403,10 @@
|
|||||||
"id": "85",
|
"id": "85",
|
||||||
"name": "Μουσικό κουτί | Tree Adams, Seventh Moon",
|
"name": "Μουσικό κουτί | Tree Adams, Seventh Moon",
|
||||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png"
|
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "86",
|
||||||
|
"name": "Μουσικό κουτί | Perfect World, Ay Hey",
|
||||||
|
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-86.png"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
@@ -403,5 +403,10 @@
|
|||||||
"id": "85",
|
"id": "85",
|
||||||
"name": "Music Kit | Tree Adams, Seventh Moon",
|
"name": "Music Kit | Tree Adams, Seventh Moon",
|
||||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png"
|
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "86",
|
||||||
|
"name": "Music Kit | Perfect World, Ay Hey",
|
||||||
|
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-86.png"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
@@ -403,5 +403,10 @@
|
|||||||
"id": "85",
|
"id": "85",
|
||||||
"name": "Kit de música | Tree Adams, Seventh Moon",
|
"name": "Kit de música | Tree Adams, Seventh Moon",
|
||||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png"
|
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "86",
|
||||||
|
"name": "Kit de música | Perfect World, Ay Hey",
|
||||||
|
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-86.png"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
@@ -403,5 +403,10 @@
|
|||||||
"id": "85",
|
"id": "85",
|
||||||
"name": "Kit de música | Tree Adams, Seventh Moon",
|
"name": "Kit de música | Tree Adams, Seventh Moon",
|
||||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png"
|
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "86",
|
||||||
|
"name": "Kit de música | Perfect World, Ay Hey",
|
||||||
|
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-86.png"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
@@ -403,5 +403,10 @@
|
|||||||
"id": "85",
|
"id": "85",
|
||||||
"name": "Musiikkipakkaus | Tree Adams: Seventh Moon",
|
"name": "Musiikkipakkaus | Tree Adams: Seventh Moon",
|
||||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png"
|
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "86",
|
||||||
|
"name": "Musiikkipakkaus | Perfect World, Ay Hey",
|
||||||
|
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-86.png"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
@@ -403,5 +403,10 @@
|
|||||||
"id": "85",
|
"id": "85",
|
||||||
"name": "Kit de musiques | Tree Adams, Seventh Moon",
|
"name": "Kit de musiques | Tree Adams, Seventh Moon",
|
||||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png"
|
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "86",
|
||||||
|
"name": "Kit de musiques | Perfect World, Ay Hey",
|
||||||
|
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-86.png"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
@@ -403,5 +403,10 @@
|
|||||||
"id": "85",
|
"id": "85",
|
||||||
"name": "Zenekészlet | Tree Adams - Seventh Moon",
|
"name": "Zenekészlet | Tree Adams - Seventh Moon",
|
||||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png"
|
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "86",
|
||||||
|
"name": "Zenekészlet | Perfect World, Ay Hey",
|
||||||
|
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-86.png"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
@@ -403,5 +403,10 @@
|
|||||||
"id": "85",
|
"id": "85",
|
||||||
"name": "Tema musicale | Tree Adams, Seventh Moon",
|
"name": "Tema musicale | Tree Adams, Seventh Moon",
|
||||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png"
|
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "86",
|
||||||
|
"name": "Tema musicale | Perfect World, Ay Hey",
|
||||||
|
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-86.png"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
@@ -403,5 +403,10 @@
|
|||||||
"id": "85",
|
"id": "85",
|
||||||
"name": "ミュージックキット | Tree Adams, Seventh Moon",
|
"name": "ミュージックキット | Tree Adams, Seventh Moon",
|
||||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png"
|
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "86",
|
||||||
|
"name": "ミュージックキット | Perfect World, Ay Hey",
|
||||||
|
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-86.png"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
@@ -403,5 +403,10 @@
|
|||||||
"id": "85",
|
"id": "85",
|
||||||
"name": "음악 키트 | Tree Adams, Seventh Moon",
|
"name": "음악 키트 | Tree Adams, Seventh Moon",
|
||||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png"
|
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "86",
|
||||||
|
"name": "음악 키트 | Perfect World, Ay Hey",
|
||||||
|
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-86.png"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
@@ -336,32 +336,32 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": "71",
|
"id": "71",
|
||||||
"name": "Music Kit | DRYDEN, Feel The Power",
|
"name": "Muziekset | DRYDEN, Feel The Power",
|
||||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-71.png"
|
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-71.png"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": "72",
|
"id": "72",
|
||||||
"name": "Music Kit | ISOxo, inhuman",
|
"name": "Muziekset | ISOxo, inhuman",
|
||||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-72.png"
|
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-72.png"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": "73",
|
"id": "73",
|
||||||
"name": "Music Kit | KILL SCRIPT, All Night",
|
"name": "Muziekset | KILL SCRIPT, All Night",
|
||||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-73.png"
|
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-73.png"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": "74",
|
"id": "74",
|
||||||
"name": "Music Kit | Knock2, Make U SWEAT!",
|
"name": "Muziekset | Knock2, Make U SWEAT!",
|
||||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-74.png"
|
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-74.png"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": "75",
|
"id": "75",
|
||||||
"name": "Music Kit | Rad Cat, Reason",
|
"name": "Muziekset | Rad Cat, Reason",
|
||||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-75.png"
|
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-75.png"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": "76",
|
"id": "76",
|
||||||
"name": "Music Kit | TWERL, Ekko & Sidetrack, Under Bright Lights",
|
"name": "Muziekset | TWERL, Ekko & Sidetrack, Under Bright Lights",
|
||||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-76.png"
|
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-76.png"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -403,5 +403,10 @@
|
|||||||
"id": "85",
|
"id": "85",
|
||||||
"name": "Muziekset | Tree Adams, Seventh Moon",
|
"name": "Muziekset | Tree Adams, Seventh Moon",
|
||||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png"
|
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "86",
|
||||||
|
"name": "Muziekset | Perfect World, Ay Hey",
|
||||||
|
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-86.png"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
@@ -403,5 +403,10 @@
|
|||||||
"id": "85",
|
"id": "85",
|
||||||
"name": "Musikksett | Tree Adams – Seventh Moon",
|
"name": "Musikksett | Tree Adams – Seventh Moon",
|
||||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png"
|
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "86",
|
||||||
|
"name": "Musikksett | Perfect World, Ay Hey",
|
||||||
|
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-86.png"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
@@ -386,7 +386,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": "82",
|
"id": "82",
|
||||||
"name": "Music Kit | Matt Levine, Agency",
|
"name": "Zestaw utworów | Matt Levine, Agency",
|
||||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-82.png"
|
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-82.png"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -396,12 +396,17 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": "84",
|
"id": "84",
|
||||||
"name": "Music Kit | Tim Huling, Devil's Paintbrush",
|
"name": "Zestaw utworów | Tim Huling, Devil's Paintbrush",
|
||||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-84.png"
|
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-84.png"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": "85",
|
"id": "85",
|
||||||
"name": "Zestaw utworów | Tree Adams, Seventh Moon",
|
"name": "Zestaw utworów | Tree Adams, Seventh Moon",
|
||||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png"
|
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "86",
|
||||||
|
"name": "Zestaw utworów | Perfect World, Ay Hey",
|
||||||
|
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-86.png"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
@@ -403,5 +403,10 @@
|
|||||||
"id": "85",
|
"id": "85",
|
||||||
"name": "Trilha Sonora | Tree Adams, Seventh Moon",
|
"name": "Trilha Sonora | Tree Adams, Seventh Moon",
|
||||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png"
|
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "86",
|
||||||
|
"name": "Trilha Sonora | Perfect World, Ay Hey",
|
||||||
|
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-86.png"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
@@ -381,7 +381,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": "81",
|
"id": "81",
|
||||||
"name": "Music Kit | Dren McDonald, Coffee! Kofe! Kahveh!",
|
"name": "Kit de Música | Dren McDonald, Coffee! Kofe! Kahveh!",
|
||||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-81.png"
|
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-81.png"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -403,5 +403,10 @@
|
|||||||
"id": "85",
|
"id": "85",
|
||||||
"name": "Kit de Música | Tree Adams, Seventh Moon",
|
"name": "Kit de Música | Tree Adams, Seventh Moon",
|
||||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png"
|
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "86",
|
||||||
|
"name": "Kit de Música | Perfect World, Ay Hey",
|
||||||
|
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-86.png"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
@@ -403,5 +403,10 @@
|
|||||||
"id": "85",
|
"id": "85",
|
||||||
"name": "Pachet muzical | Tree Adams, Seventh Moon",
|
"name": "Pachet muzical | Tree Adams, Seventh Moon",
|
||||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png"
|
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "86",
|
||||||
|
"name": "Pachet muzical | Perfect World, Ay Hey",
|
||||||
|
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-86.png"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
@@ -403,5 +403,10 @@
|
|||||||
"id": "85",
|
"id": "85",
|
||||||
"name": "Набор музыки | Tree Adams — Seventh Moon",
|
"name": "Набор музыки | Tree Adams — Seventh Moon",
|
||||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png"
|
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "86",
|
||||||
|
"name": "Набор музыки | Perfect World, Ay Hey",
|
||||||
|
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-86.png"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
@@ -403,5 +403,10 @@
|
|||||||
"id": "85",
|
"id": "85",
|
||||||
"name": "Musikpaket | Tree Adams – Seventh Moon",
|
"name": "Musikpaket | Tree Adams – Seventh Moon",
|
||||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png"
|
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "86",
|
||||||
|
"name": "Musikpaket | Perfect World, Ay Hey",
|
||||||
|
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-86.png"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
@@ -403,5 +403,10 @@
|
|||||||
"id": "85",
|
"id": "85",
|
||||||
"name": "ชุดอุปกรณ์เพลง | Tree Adams, Seventh Moon",
|
"name": "ชุดอุปกรณ์เพลง | Tree Adams, Seventh Moon",
|
||||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png"
|
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "86",
|
||||||
|
"name": "ชุดอุปกรณ์เพลง | Perfect World, Ay Hey",
|
||||||
|
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-86.png"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
@@ -403,5 +403,10 @@
|
|||||||
"id": "85",
|
"id": "85",
|
||||||
"name": "Müzik Kiti | Tree Adams, Seventh Moon",
|
"name": "Müzik Kiti | Tree Adams, Seventh Moon",
|
||||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png"
|
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "86",
|
||||||
|
"name": "Müzik Kiti | Perfect World, Ay Hey",
|
||||||
|
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-86.png"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
@@ -403,5 +403,10 @@
|
|||||||
"id": "85",
|
"id": "85",
|
||||||
"name": "Музичний альбом | Tree Adams — Seventh Moon",
|
"name": "Музичний альбом | Tree Adams — Seventh Moon",
|
||||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png"
|
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "86",
|
||||||
|
"name": "Музичний альбом | Perfect World, Ay Hey",
|
||||||
|
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-86.png"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
@@ -403,5 +403,10 @@
|
|||||||
"id": "85",
|
"id": "85",
|
||||||
"name": "Gói âm thanh | Tree Adams, Seventh Moon",
|
"name": "Gói âm thanh | Tree Adams, Seventh Moon",
|
||||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png"
|
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "86",
|
||||||
|
"name": "Gói âm thanh | Perfect World, Ay Hey",
|
||||||
|
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-86.png"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
@@ -403,5 +403,10 @@
|
|||||||
"id": "85",
|
"id": "85",
|
||||||
"name": "音乐盒 | Tree Adams,柒月",
|
"name": "音乐盒 | Tree Adams,柒月",
|
||||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png"
|
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "86",
|
||||||
|
"name": "音乐盒 | Perfect World, Ay Hey",
|
||||||
|
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-86.png"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
@@ -403,5 +403,10 @@
|
|||||||
"id": "85",
|
"id": "85",
|
||||||
"name": "音樂包 | Tree Adams - Seventh Moon",
|
"name": "音樂包 | Tree Adams - Seventh Moon",
|
||||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png"
|
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "86",
|
||||||
|
"name": "音樂包 | Perfect World, Ay Hey",
|
||||||
|
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-86.png"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
@@ -403,5 +403,10 @@
|
|||||||
"id": "85",
|
"id": "85",
|
||||||
"name": "음악 키트 | Tree Adams, Seventh Moon",
|
"name": "음악 키트 | Tree Adams, Seventh Moon",
|
||||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png"
|
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "86",
|
||||||
|
"name": "음악 키트 | Perfect World, Ay Hey",
|
||||||
|
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-86.png"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
@@ -336,32 +336,32 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": "71",
|
"id": "71",
|
||||||
"name": "Music Kit | DRYDEN, Feel The Power",
|
"name": "Muziekset | DRYDEN, Feel The Power",
|
||||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-71.png"
|
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-71.png"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": "72",
|
"id": "72",
|
||||||
"name": "Music Kit | ISOxo, inhuman",
|
"name": "Muziekset | ISOxo, inhuman",
|
||||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-72.png"
|
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-72.png"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": "73",
|
"id": "73",
|
||||||
"name": "Music Kit | KILL SCRIPT, All Night",
|
"name": "Muziekset | KILL SCRIPT, All Night",
|
||||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-73.png"
|
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-73.png"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": "74",
|
"id": "74",
|
||||||
"name": "Music Kit | Knock2, Make U SWEAT!",
|
"name": "Muziekset | Knock2, Make U SWEAT!",
|
||||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-74.png"
|
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-74.png"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": "75",
|
"id": "75",
|
||||||
"name": "Music Kit | Rad Cat, Reason",
|
"name": "Muziekset | Rad Cat, Reason",
|
||||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-75.png"
|
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-75.png"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": "76",
|
"id": "76",
|
||||||
"name": "Music Kit | TWERL, Ekko & Sidetrack, Under Bright Lights",
|
"name": "Muziekset | TWERL, Ekko & Sidetrack, Under Bright Lights",
|
||||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-76.png"
|
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-76.png"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -403,5 +403,10 @@
|
|||||||
"id": "85",
|
"id": "85",
|
||||||
"name": "Muziekset | Tree Adams, Seventh Moon",
|
"name": "Muziekset | Tree Adams, Seventh Moon",
|
||||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png"
|
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "86",
|
||||||
|
"name": "Muziekset | Perfect World, Ay Hey",
|
||||||
|
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-86.png"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
@@ -403,5 +403,10 @@
|
|||||||
"id": "85",
|
"id": "85",
|
||||||
"name": "Musikksett | Tree Adams – Seventh Moon",
|
"name": "Musikksett | Tree Adams – Seventh Moon",
|
||||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png"
|
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "86",
|
||||||
|
"name": "Musikksett | Perfect World, Ay Hey",
|
||||||
|
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-86.png"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
@@ -386,7 +386,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": "82",
|
"id": "82",
|
||||||
"name": "Music Kit | Matt Levine, Agency",
|
"name": "Zestaw utworów | Matt Levine, Agency",
|
||||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-82.png"
|
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-82.png"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -396,12 +396,17 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": "84",
|
"id": "84",
|
||||||
"name": "Music Kit | Tim Huling, Devil's Paintbrush",
|
"name": "Zestaw utworów | Tim Huling, Devil's Paintbrush",
|
||||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-84.png"
|
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-84.png"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": "85",
|
"id": "85",
|
||||||
"name": "Zestaw utworów | Tree Adams, Seventh Moon",
|
"name": "Zestaw utworów | Tree Adams, Seventh Moon",
|
||||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png"
|
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "86",
|
||||||
|
"name": "Zestaw utworów | Perfect World, Ay Hey",
|
||||||
|
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-86.png"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
@@ -403,5 +403,10 @@
|
|||||||
"id": "85",
|
"id": "85",
|
||||||
"name": "Trilha Sonora | Tree Adams, Seventh Moon",
|
"name": "Trilha Sonora | Tree Adams, Seventh Moon",
|
||||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png"
|
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "86",
|
||||||
|
"name": "Trilha Sonora | Perfect World, Ay Hey",
|
||||||
|
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-86.png"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
@@ -381,7 +381,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": "81",
|
"id": "81",
|
||||||
"name": "Music Kit | Dren McDonald, Coffee! Kofe! Kahveh!",
|
"name": "Kit de Música | Dren McDonald, Coffee! Kofe! Kahveh!",
|
||||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-81.png"
|
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-81.png"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -403,5 +403,10 @@
|
|||||||
"id": "85",
|
"id": "85",
|
||||||
"name": "Kit de Música | Tree Adams, Seventh Moon",
|
"name": "Kit de Música | Tree Adams, Seventh Moon",
|
||||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png"
|
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "86",
|
||||||
|
"name": "Kit de Música | Perfect World, Ay Hey",
|
||||||
|
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-86.png"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
@@ -403,5 +403,10 @@
|
|||||||
"id": "85",
|
"id": "85",
|
||||||
"name": "Pachet muzical | Tree Adams, Seventh Moon",
|
"name": "Pachet muzical | Tree Adams, Seventh Moon",
|
||||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png"
|
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "86",
|
||||||
|
"name": "Pachet muzical | Perfect World, Ay Hey",
|
||||||
|
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-86.png"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
@@ -403,5 +403,10 @@
|
|||||||
"id": "85",
|
"id": "85",
|
||||||
"name": "Набор музыки | Tree Adams — Seventh Moon",
|
"name": "Набор музыки | Tree Adams — Seventh Moon",
|
||||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png"
|
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "86",
|
||||||
|
"name": "Набор музыки | Perfect World, Ay Hey",
|
||||||
|
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-86.png"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
@@ -403,5 +403,10 @@
|
|||||||
"id": "85",
|
"id": "85",
|
||||||
"name": "Musikpaket | Tree Adams – Seventh Moon",
|
"name": "Musikpaket | Tree Adams – Seventh Moon",
|
||||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png"
|
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "86",
|
||||||
|
"name": "Musikpaket | Perfect World, Ay Hey",
|
||||||
|
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-86.png"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
@@ -403,5 +403,10 @@
|
|||||||
"id": "85",
|
"id": "85",
|
||||||
"name": "ชุดอุปกรณ์เพลง | Tree Adams, Seventh Moon",
|
"name": "ชุดอุปกรณ์เพลง | Tree Adams, Seventh Moon",
|
||||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png"
|
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "86",
|
||||||
|
"name": "ชุดอุปกรณ์เพลง | Perfect World, Ay Hey",
|
||||||
|
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-86.png"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
@@ -403,5 +403,10 @@
|
|||||||
"id": "85",
|
"id": "85",
|
||||||
"name": "Müzik Kiti | Tree Adams, Seventh Moon",
|
"name": "Müzik Kiti | Tree Adams, Seventh Moon",
|
||||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png"
|
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "86",
|
||||||
|
"name": "Müzik Kiti | Perfect World, Ay Hey",
|
||||||
|
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-86.png"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
@@ -403,5 +403,10 @@
|
|||||||
"id": "85",
|
"id": "85",
|
||||||
"name": "Музичний альбом | Tree Adams — Seventh Moon",
|
"name": "Музичний альбом | Tree Adams — Seventh Moon",
|
||||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png"
|
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "86",
|
||||||
|
"name": "Музичний альбом | Perfect World, Ay Hey",
|
||||||
|
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-86.png"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
@@ -403,5 +403,10 @@
|
|||||||
"id": "85",
|
"id": "85",
|
||||||
"name": "Gói âm thanh | Tree Adams, Seventh Moon",
|
"name": "Gói âm thanh | Tree Adams, Seventh Moon",
|
||||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png"
|
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "86",
|
||||||
|
"name": "Gói âm thanh | Perfect World, Ay Hey",
|
||||||
|
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-86.png"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
@@ -403,5 +403,10 @@
|
|||||||
"id": "85",
|
"id": "85",
|
||||||
"name": "音乐盒 | Tree Adams,柒月",
|
"name": "音乐盒 | Tree Adams,柒月",
|
||||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png"
|
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "86",
|
||||||
|
"name": "音乐盒 | Perfect World, Ay Hey",
|
||||||
|
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-86.png"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
@@ -403,5 +403,10 @@
|
|||||||
"id": "85",
|
"id": "85",
|
||||||
"name": "音樂包 | Tree Adams - Seventh Moon",
|
"name": "音樂包 | Tree Adams - Seventh Moon",
|
||||||
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png"
|
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-85.png"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "86",
|
||||||
|
"name": "音樂包 | Perfect World, Ay Hey",
|
||||||
|
"image": "https://raw.githubusercontent.com/Nereziel/cs2-WeaponPaints/main/website/img/skins/music_kit-86.png"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
BIN
website/img/skins/music_kit-78.png
Normal file
|
After Width: | Height: | Size: 69 KiB |
BIN
website/img/skins/music_kit-79.png
Normal file
|
After Width: | Height: | Size: 48 KiB |
BIN
website/img/skins/music_kit-80.png
Normal file
|
After Width: | Height: | Size: 58 KiB |
BIN
website/img/skins/music_kit-81.png
Normal file
|
After Width: | Height: | Size: 68 KiB |
BIN
website/img/skins/music_kit-82.png
Normal file
|
After Width: | Height: | Size: 56 KiB |
BIN
website/img/skins/music_kit-83.png
Normal file
|
After Width: | Height: | Size: 90 KiB |
BIN
website/img/skins/music_kit-84.png
Normal file
|
After Width: | Height: | Size: 58 KiB |
BIN
website/img/skins/music_kit-85.png
Normal file
|
After Width: | Height: | Size: 82 KiB |
BIN
website/img/skins/music_kit-86.png
Normal file
|
After Width: | Height: | Size: 38 KiB |
|
Before Width: | Height: | Size: 88 KiB After Width: | Height: | Size: 88 KiB |
|
Before Width: | Height: | Size: 93 KiB After Width: | Height: | Size: 93 KiB |
|
Before Width: | Height: | Size: 71 KiB After Width: | Height: | Size: 73 KiB |
|
Before Width: | Height: | Size: 83 KiB After Width: | Height: | Size: 84 KiB |
|
Before Width: | Height: | Size: 85 KiB After Width: | Height: | Size: 85 KiB |
BIN
website/img/skins/weapon_ak47-113.png
Normal file
|
After Width: | Height: | Size: 94 KiB |
|
Before Width: | Height: | Size: 102 KiB After Width: | Height: | Size: 102 KiB |
|
Before Width: | Height: | Size: 86 KiB After Width: | Height: | Size: 87 KiB |
|
Before Width: | Height: | Size: 90 KiB After Width: | Height: | Size: 90 KiB |
BIN
website/img/skins/weapon_ak47-1179.png
Normal file
|
After Width: | Height: | Size: 79 KiB |
|
Before Width: | Height: | Size: 76 KiB After Width: | Height: | Size: 76 KiB |
|
Before Width: | Height: | Size: 95 KiB After Width: | Height: | Size: 95 KiB |
|
Before Width: | Height: | Size: 82 KiB After Width: | Height: | Size: 82 KiB |
|
Before Width: | Height: | Size: 81 KiB After Width: | Height: | Size: 81 KiB |