Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 33 additions & 1 deletion addons/sourcemod/scripting/FixMapsFiles.sp
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ public Plugin myinfo =
name = "Maps files fixer",
author = ".Rushaway",
description = "Downloads fixed files for multiples map",
version = "1.0.0",
version = "1.1.0",
url = ""
};

Expand All @@ -22,6 +22,10 @@ public void OnMapStart()
ApplyParanoidFix();
ApplyGargantuaFix();
}
else if (strcmp(sCurrentMap, "ze_sky_athletic_adv_v9_12s", false) == 0)
{
ApplySkyAthleticFix();
}
else if (strcmp(sCurrentMap, "ze_avalanche_reboot_beta7", false) == 0 || strcmp(sCurrentMap, "ze_l0v0l_v1_4", false) == 0 ||
strcmp(sCurrentMap, "ze_mountain_escape_v5_zy", false) == 0 || strcmp(sCurrentMap, "ze_Pidaras_v1_4fix3", false) == 0 ||
strcmp(sCurrentMap, "ze_sandstorm_css_v1_5x3", false) == 0 || strcmp(sCurrentMap, "ze_tyranny_v5fix", false) == 0)
Expand Down Expand Up @@ -61,4 +65,32 @@ stock void ApplyGargantuaFix()
AddFileToDownloadsTable("models/garg_fix_2025.phy");
AddFileToDownloadsTable("models/garg_fix_2025.sw.vtx");
AddFileToDownloadsTable("models/garg_fix_2025.vvd");
}

stock void ApplySkyAthleticFix()
{
AddFileToDownloadsTable("materials/skybox/sky_csgo_night02bbk.vmt");
AddFileToDownloadsTable("materials/skybox/sky_csgo_night02bbk.vtf");
AddFileToDownloadsTable("materials/skybox/sky_csgo_night02bdn.vmt");
AddFileToDownloadsTable("materials/skybox/sky_csgo_night02bdn.vtf");
AddFileToDownloadsTable("materials/skybox/sky_csgo_night02bft.vmt");
AddFileToDownloadsTable("materials/skybox/sky_csgo_night02bft.vtf");
AddFileToDownloadsTable("materials/skybox/sky_csgo_night02bk.vmt");
AddFileToDownloadsTable("materials/skybox/sky_csgo_night02bk.vtf");
AddFileToDownloadsTable("materials/skybox/sky_csgo_night02blf.vmt");
AddFileToDownloadsTable("materials/skybox/sky_csgo_night02blf.vtf");
AddFileToDownloadsTable("materials/skybox/sky_csgo_night02brt.vmt");
AddFileToDownloadsTable("materials/skybox/sky_csgo_night02brt.vtf");
AddFileToDownloadsTable("materials/skybox/sky_csgo_night02bup.vmt");
AddFileToDownloadsTable("materials/skybox/sky_csgo_night02bup.vtf");
AddFileToDownloadsTable("materials/skybox/sky_csgo_night02dn.vmt");
AddFileToDownloadsTable("materials/skybox/sky_csgo_night02dn.vtf");
AddFileToDownloadsTable("materials/skybox/sky_csgo_night02ft.vmt");
AddFileToDownloadsTable("materials/skybox/sky_csgo_night02ft.vtf");
AddFileToDownloadsTable("materials/skybox/sky_csgo_night02lf.vmt");
AddFileToDownloadsTable("materials/skybox/sky_csgo_night02lf.vtf");
AddFileToDownloadsTable("materials/skybox/sky_csgo_night02rt.vmt");
AddFileToDownloadsTable("materials/skybox/sky_csgo_night02rt.vtf");
AddFileToDownloadsTable("materials/skybox/sky_csgo_night02up.vmt");
AddFileToDownloadsTable("materials/skybox/sky_csgo_night02up.vtf");
}
6 changes: 6 additions & 0 deletions materials/skybox/sky_csgo_night02bbk.vmt
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
"unlitgeneric"
{
"$basetexture" "skybox/sky_csgo_night02bbk"
"$nofog" 1
"$ignorez" 1
}
Binary file added materials/skybox/sky_csgo_night02bbk.vtf
Binary file not shown.
6 changes: 6 additions & 0 deletions materials/skybox/sky_csgo_night02bdn.vmt
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
"unlitgeneric"
{
"$basetexture" "skybox/sky_csgo_night02bdn"
"$nofog" 1
"$ignorez" 1
}
Binary file added materials/skybox/sky_csgo_night02bdn.vtf
Binary file not shown.
6 changes: 6 additions & 0 deletions materials/skybox/sky_csgo_night02bft.vmt
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
"unlitgeneric"
{
"$basetexture" "skybox/sky_csgo_night02bft"
"$nofog" 1
"$ignorez" 1
}
Binary file added materials/skybox/sky_csgo_night02bft.vtf
Binary file not shown.
6 changes: 6 additions & 0 deletions materials/skybox/sky_csgo_night02bk.vmt
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
"unlitgeneric"
{
"$basetexture" "skybox/sky_csgo_night02bk"
"$nofog" 1
"$ignorez" 1
}
Binary file added materials/skybox/sky_csgo_night02bk.vtf
Binary file not shown.
6 changes: 6 additions & 0 deletions materials/skybox/sky_csgo_night02blf.vmt
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
"unlitgeneric"
{
"$basetexture" "skybox/sky_csgo_night02blf"
"$nofog" 1
"$ignorez" 1
}
Binary file added materials/skybox/sky_csgo_night02blf.vtf
Binary file not shown.
6 changes: 6 additions & 0 deletions materials/skybox/sky_csgo_night02brt.vmt
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
"unlitgeneric"
{
"$basetexture" "skybox/sky_csgo_night02brt"
"$nofog" 1
"$ignorez" 1
}
Binary file added materials/skybox/sky_csgo_night02brt.vtf
Binary file not shown.
6 changes: 6 additions & 0 deletions materials/skybox/sky_csgo_night02bup.vmt
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
"unlitgeneric"
{
"$basetexture" "skybox/sky_csgo_night02bup"
"$nofog" 1
"$ignorez" 1
}
Binary file added materials/skybox/sky_csgo_night02bup.vtf
Binary file not shown.
6 changes: 6 additions & 0 deletions materials/skybox/sky_csgo_night02dn.vmt
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
"unlitgeneric"
{
"$basetexture" "skybox/sky_csgo_night02dn"
"$nofog" 1
"$ignorez" 1
}
Binary file added materials/skybox/sky_csgo_night02dn.vtf
Binary file not shown.
6 changes: 6 additions & 0 deletions materials/skybox/sky_csgo_night02ft.vmt
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
"unlitgeneric"
{
"$basetexture" "skybox/sky_csgo_night02ft"
"$nofog" 1
"$ignorez" 1
}
Binary file added materials/skybox/sky_csgo_night02ft.vtf
Binary file not shown.
6 changes: 6 additions & 0 deletions materials/skybox/sky_csgo_night02lf.vmt
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
"unlitgeneric"
{
"$basetexture" "skybox/sky_csgo_night02lf"
"$nofog" 1
"$ignorez" 1
}
Binary file added materials/skybox/sky_csgo_night02lf.vtf
Binary file not shown.
6 changes: 6 additions & 0 deletions materials/skybox/sky_csgo_night02rt.vmt
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
"unlitgeneric"
{
"$basetexture" "skybox/sky_csgo_night02rt"
"$nofog" 1
"$ignorez" 1
}
Binary file added materials/skybox/sky_csgo_night02rt.vtf
Binary file not shown.
6 changes: 6 additions & 0 deletions materials/skybox/sky_csgo_night02up.vmt
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
"unlitgeneric"
{
"$basetexture" "skybox/sky_csgo_night02up"
"$nofog" 1
"$ignorez" 1
}
Binary file added materials/skybox/sky_csgo_night02up.vtf
Binary file not shown.
Loading