diff --git a/small_scripts/README.md b/small_scripts/README.md index 35fc747..0a2e3ab 100644 --- a/small_scripts/README.md +++ b/small_scripts/README.md @@ -21,6 +21,11 @@ Display the player's killstreak, total kills and deaths on top of the screen ![image](images/display_player_stats.png) +## hardcore_tweaks.gsc + +The hardcore mode replaces some game functionalities like enabling friendly fire or disabling killcams. +With this script you override the tweaks the hardcore mode brings. + ## kill_stuck_bots.gsc This is a temporary solution to inactive bots or bots stuck in corners on custom maps. diff --git a/small_scripts/hardcore_tweaks.gsc b/small_scripts/hardcore_tweaks.gsc new file mode 100644 index 0000000..e21250b --- /dev/null +++ b/small_scripts/hardcore_tweaks.gsc @@ -0,0 +1,5 @@ +Init() +{ + level.teamTweaks["fftype"].value = 0; // Disable friendly fire + level.gameTweaks["allowkillcam"].value = 1; // Enable killcams +} \ No newline at end of file