Last active
August 29, 2015 14:00
-
-
Save Aldarone/8e903775517867085434 to your computer and use it in GitHub Desktop.
Wildstar launcher for Wine
This file contains 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 | |
# Tested with wine-1.7.17 | |
# Put this script and the Wildstar.exe installer in a directory | |
# Edit the VIDEO_MEMORY_SIZE according to your graphic card. | |
# | |
# At first launch, use `./winestar.sh install` and keep the default install directory | |
# | |
# Once the launcher is downloaded you can simply use ./winestar.sh | |
# CHANGEME | |
VIDEO_MEMORY_SIZE=1024 | |
# DO NOT CHANGE ME | |
export WINEARCH="win32" | |
export WINEPREFIX="$(dirname $(readlink -f $0))/.winestar" | |
export WINEDEBUG="-all" | |
case $1 in | |
'install' ) | |
winetricks -q ie8 winhttp | |
winetricks videomemorysize=$VIDEO_MEMORY_SIZE | |
wine ${WINEPREFIX}/../Wildstar.exe | |
;; | |
'regedit' ) | |
wine regedit | |
;; | |
'uninstall' ) | |
wine ${WINEPREFIX}/../Wildstar.exe /uninstall | |
;; | |
* ) | |
wine "${WINEPREFIX}/drive_c/Program Files/NCSOFT/WildStar/Wildstar.exe" | |
;; | |
esac |
Worked well with Ubuntu 13.10 and wine 1.7.18
Got me farther than any other method so far, however once I get into the login screen in the game I can't seem to click anything. The ToS pops up and I can scroll through it with my mouse wheel but I'm unable to click any of the buttons. Do you have any ideas?
Linux Mint 17 Qiana x64
32gb Memory
Nvidia GeForce GTX 660 Ti
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Did you launch
./winestar.sh install
the first time ? (cf. line 8 of the script)