hardcore_tweaks 1.0

This commit is contained in:
Resxt 2022-03-22 16:16:48 +01:00
parent 4204298b3e
commit ee004894e2
2 changed files with 10 additions and 0 deletions

View File

@ -21,6 +21,11 @@ Display the player's killstreak, total kills and deaths on top of the screen
![image](images/display_player_stats.png)
</details>
## 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.

View File

@ -0,0 +1,5 @@
Init()
{
level.teamTweaks["fftype"].value = 0; // Disable friendly fire
level.gameTweaks["allowkillcam"].value = 1; // Enable killcams
}