Advertisement
Guest User

Conan Exiles on Linux

a guest
May 3rd, 2021
2,997
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 2.81 KB | None | 0 0
  1. #!/bin/bash
  2.  
  3.  
  4. # ############################################################### #
  5. #                                                                 #
  6. #           Conan Exiles on Linux - Skip Launcher Script          #
  7. #    Proton 6.3 & Steam Services are working as of May 3, 2021    #
  8. #                                                                 #
  9. # ############################################################### #
  10. #
  11. # Funcom has released a new launcher which makes Conan Exiles
  12. # unable to launch through Steam on Linux. Below is the solution.
  13. #
  14. # 1) Customize this script with your directory structure and Proton
  15. #    version.
  16. #
  17. # 2) Save this file as conan.sh
  18. #
  19. # 3) Make the script file executable. You can either:
  20. #
  21. #    A) Right click this script in your file browser, go to
  22. #       Properties and select Allow executing file as a program
  23. #
  24. #    B) Navigate to the file in your terminal and use:
  25. #
  26. #       chmod +x conan.sh
  27. #
  28. # 4) Add a non-steam game to Steam and point target to the directory
  29. #    that has conan.sh inside.
  30. #
  31. #    Examples:
  32. #
  33. #        "/home/alice/Games/conan.sh"
  34. #
  35. #        "/home/alice/conan.sh"
  36. #
  37. # You do not need to use Steam's compatibility for this launcher.
  38. #
  39. # If you have difficulty with Steam services you might try moving
  40. # the %command% from this script into the Launch Options in the
  41. # Steam launcer's properties. Right now it is working with no Launch
  42. # Options, just using the script.
  43. #
  44. # ###############################################################
  45.  
  46.  
  47. # Change the STEAMAPPS_PATH to where Steam installs your games
  48. # up to the point of the steamapps directory. Don't include the
  49. # trailing / at the end.
  50. #
  51. # Examples:
  52. #
  53. #       STEAMAPPS_PATH=/home/alice/Games/Steam/steamapps
  54. #
  55. #       STEAMAPPS_PATH=$HOME/.steam/debian-installation/steamapps
  56. #
  57. STEAMAPPS_PATH=$HOME/.steam/debian-installation/steamapps
  58.  
  59. # Change the PROTON_VERSION to whatever you're going to use.
  60. # You might need to try different versions to get it to work
  61. # on your machine.
  62. #
  63. # You can check in steamapps/common/ to find which versions
  64. # you have installed currently.
  65. #
  66. # To install a new version, right click Conan Exiles in Steam
  67. # and go to the compatibility tab to select a different version.
  68. # Start the game, and it will install that Proton.
  69. #
  70. # Examples:
  71. #
  72. #       PROTON_VERSION=5.13
  73. #
  74. #       PROTON_VERSION=6.3
  75. #
  76. PROTON_VERSION=6.3
  77.  
  78. export WINEDEBUG=-all
  79. export WINEPREFIX=$STEAMAPPS_PATH/compatdata/440900/pfx
  80. export STEAM_COMPAT_DATA_PATH=$STEAMAPPS_PATH/compatdata/440900
  81. export DXVK_LOG_LEVEL=none
  82. export VKBASALT_LOG_LEVEL=none
  83. export WINEESYNC=1
  84. export WINEFSYNC=1
  85. export ENABLE_VKBASALT=1
  86.  
  87. cd $STEAMAPPS_PATH/common/Conan\ Exiles/ConanSandbox/Binaries/Win64/
  88. $STEAMAPPS_PATH/common/Proton\ $PROTON_VERSION/proton run ./ConanSandbox.exe %command%
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement