bash script for linux: #!/bin/bash # Welcome Screen echo "====================================" echo " No-Intro" echo " Version 0.4" echo "====================================" echo echo "This script is provided by Gametism." echo "Unauthorized usage is prohibited." echo read -p "Press enter to continue..." # Set folder path folder_path="$HOME/.local/share/Steam/steamapps/compatdata/2124490/pfx/drive_c/users/steamuser/AppData/Local/SilentHill2/Saved/Config/Windows" ini_file="$folder_path/Game.ini" # Create folder if needed mkdir -p "$folder_path" # Create ini file if needed if [ ! -f "$ini_file" ]; then echo "; Configuration File" > "$ini_file" fi # Add section if missing if ! grep -q "^\[/Script/MoviePlayer.MoviePlayerSettings]" "$ini_file"; then echo "[/Script/MoviePlayer.MoviePlayerSettings]" >> "$ini_file" fi # Add settings if missing if ! grep -q "^bWaitForMoviesToComplete=" "$ini_file"; then echo "bWaitForMoviesToComplete=False" >> "$ini_file" fi if ! grep -q "^bMoviesAreSkippable=" "$ini_file"; then echo "bMoviesAreSkippable=True" >> "$ini_file" fi if ! grep -q "^StartupMovies=" "$ini_file"; then echo "StartupMovies=" >> "$ini_file" fi echo "Done. No duplicates were added." read -p "Press enter to exit..."
Is there no way to actually skip straight to press the "continue" ? After installing this mod and the other mod from you , i still have to press few buttoms to load the save
could you atleast tell me why its not working when i just replace the .bk2 is there a program i need to run the bk2 through to get the other files to make it work ? im just lost rn, on other games you just replace the bk2 file and its done
34 comments
#!/bin/bash
# Welcome Screen
echo "===================================="
echo " No-Intro"
echo " Version 0.4"
echo "===================================="
echo
echo "This script is provided by Gametism."
echo "Unauthorized usage is prohibited."
echo
read -p "Press enter to continue..."
# Set folder path
folder_path="$HOME/.local/share/Steam/steamapps/compatdata/2124490/pfx/drive_c/users/steamuser/AppData/Local/SilentHill2/Saved/Config/Windows"
ini_file="$folder_path/Game.ini"
# Create folder if needed
mkdir -p "$folder_path"
# Create ini file if needed
if [ ! -f "$ini_file" ]; then
echo "; Configuration File" > "$ini_file"
fi
# Add section if missing
if ! grep -q "^\[/Script/MoviePlayer.MoviePlayerSettings]" "$ini_file"; then
echo "[/Script/MoviePlayer.MoviePlayerSettings]" >> "$ini_file"
fi
# Add settings if missing
if ! grep -q "^bWaitForMoviesToComplete=" "$ini_file"; then
echo "bWaitForMoviesToComplete=False" >> "$ini_file"
fi
if ! grep -q "^bMoviesAreSkippable=" "$ini_file"; then
echo "bMoviesAreSkippable=True" >> "$ini_file"
fi
if ! grep -q "^StartupMovies=" "$ini_file"; then
echo "StartupMovies=" >> "$ini_file"
fi
echo "Done. No duplicates were added."
read -p "Press enter to exit..."
Just one question though: if I want to uninstall it one day, how do I do ?
Thanks.
After installing this mod and the other mod from you , i still have to press few buttoms to load the save