Created
December 23, 2023 21:10
-
-
Save 8dcc/837d509133c9af291f7351387b2a4120 to your computer and use it in GitHub Desktop.
Update configs for commit 0ebd969 of 8dcc/tf2-cheat
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Usage: | |
# ./update_enoch_cfg_*.sh CONFIG.json | |
sed -i "s/player_esp/esp_player/g" "$1" | |
sed -i "s/player_box_esp/esp_player_box/g" "$1" | |
sed -i "s/skeleton_esp/esp_skeleton/g" "$1" | |
sed -i "s/player_health_esp/esp_player_health/g" "$1" | |
sed -i "s/player_name_esp/esp_player_name/g" "$1" | |
sed -i "s/player_class_esp/esp_player_class/g" "$1" | |
sed -i "s/player_weapon_esp/esp_player_weapon/g" "$1" | |
sed -i "s/building_esp/esp_building/g" "$1" | |
sed -i "s/building_esp_type/esp_building_type/g" "$1" | |
sed -i "s/building_box_esp/esp_building_box/g" "$1" | |
sed -i "s/building_hp_esp/esp_building_hp/g" "$1" | |
sed -i "s/building_name_esp/esp_building_name/g" "$1" | |
sed -i "s/sticky_esp/esp_sticky/g" "$1" | |
sed -i "s/ammobox_esp/esp_ammobox/g" "$1" | |
sed -i "s/healthpack_esp/esp_healthpack/g" "$1" | |
sed -i "s/player_chams/chams_player/g" "$1" | |
sed -i "s/chams_ignorez/chams_ignorez/g" "$1" | |
sed -i "s/local_chams/chams_local/g" "$1" | |
sed -i "s/weapon_chams/chams_weapon/g" "$1" | |
sed -i "s/hand_chams/chams_hand/g" "$1" | |
sed -i "s/col_steam_friend_esp/col_esp_steam_friend/g" "$1" | |
sed -i "s/col_friend_esp/col_esp_friend/g" "$1" | |
sed -i "s/col_enemy_esp/col_esp_enemy/g" "$1" | |
sed -i "s/col_friend_build/col_esp_friend_build/g" "$1" | |
sed -i "s/col_enemy_build/col_esp_enemy_build/g" "$1" | |
sed -i "s/col_sticky_friend_esp/col_esp_sticky_friend/g" "$1" | |
sed -i "s/col_sticky_enemy_esp/col_esp_sticky_enemy/g" "$1" | |
sed -i "s/col_ammobox_esp/col_esp_ammobox/g" "$1" | |
sed -i "s/col_healthpack_esp/col_esp_healthpack/g" "$1" | |
sed -i "s/col_friend_chams/col_chams_friend/g" "$1" | |
sed -i "s/col_enemy_chams/col_chams_enemy/g" "$1" | |
sed -i "s/col_local_chams/col_chams_local/g" "$1" | |
sed -i "s/col_weapon_chams/col_chams_weapon/g" "$1" | |
sed -i "s/col_hand_chams/col_chams_hand/g" "$1" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment