Re: Guild Wars 2 for wine - what is needed?
"cteam" <[email protected]>
| Newsgroups | gmane.comp.emulators.wine.user |
|---|---|
| Message-ID | <[email protected]> |
just run a bash script to download the client and kill the zombie process after it crashes:
Code:
#!/bin/bash
for i in {0..25..1}
do
wine /home/hephaestus/GW/Gw2Setup.exe
sleep 30m
killall Gw2.exe
done
the sleep time and the number of iteration needed to complete the download my vary from computer to computer depending on connection speed...
this could count as a "work-around" i suppose