Brawltk 9 Report post Posted August 11, 2020 Fala galera beleza, Então a minha duvida é o seguinte, alguém aqui joga wartale no linux? estou usando o Deepin 20 a um tempinho e gostei demais desse SO, e queria saber se alguém aqui ja conseguiu jogar Wartale no linux, até pq o meu conhecimento em linux é basico, e estou usando justamente por isso, quero aprender mais sobre a plataforma e jogar um PTzim né hsuahsuah Share this post Link to post Share on other sites
DarkLink64 921 Report post Posted August 11, 2020 (edited) Sim, eu jogo pelo Linux. Minha distro é a Lubuntu. Edited August 11, 2020 by DarkLink64 Share this post Link to post Share on other sites
gonereno 48 Report post Posted August 11, 2020 5 hours ago, DarkLink64 said: Sim, eu jogo pelo Linux. Minha distro é a Lubuntu. Usa algum software para virtualizar Dark ou algum software que já abre ele normalmente? Na minha época existia o Wine que permitia fazer isso rodar software do Ruindowns no Linux. Mas desconheço quais as ferramentas que podem ser usadas hoje. Share this post Link to post Share on other sites
DarkLink64 921 Report post Posted August 11, 2020 (edited) Wine + Winetricks para as dependências do DirectX Depois de ter todas as dependencias do DirectX instaladas no Wine, só copiar a pasta do jogo no diretório drive_c criado pelo wine. Você pode também instalar também os arquivos extras de DirectX que o Wartale usa (vem na pasta do jogo). Depois, só digitar comando wine launcher.exe no terminal, dentro do diretório do jogo Porém o desempenho ainda é metade do Windows. Aqui sempre rola uma mensagem de crash ao logar, no Linux o jogo não fecha e abre novo client, depois fica loop infinito de abrir novos clients. Pra evitar, fecha a mensagem de crash e fecha também o launcher que abrir. Fora isso o jogo roda 100%, gráficos, sons, tudo perfeito, sem nenhum glitch. Edited August 11, 2020 by DarkLink64 1 Share this post Link to post Share on other sites
Brawltk 9 Report post Posted August 11, 2020 1 hour ago, DarkLink64 said: Wine + Winetricks para as dependências do DirectX Depois de ter todas as dependencias do DirectX instaladas no Wine, só copiar a pasta do jogo no diretório drive_c criado pelo wine. Você pode também instalar também os arquivos extras de DirectX que o Wartale usa (vem na pasta do jogo). Depois, só digitar comando wine launcher.exe no terminal, dentro do diretório do jogo Porém o desempenho ainda é metade do Windows. Aqui sempre rola uma mensagem de crash ao logar, no Linux o jogo não fecha e abre novo client, depois fica loop infinito de abrir novos clients. Pra evitar, fecha a mensagem de crash e fecha também o launcher que abrir. Fora isso o jogo roda 100%, gráficos, sons, tudo perfeito, sem nenhum glitch. No caso eu estou usando o Deepin 20, tentei abrir o jogo pelo protondb (Steam Play) mas não foi, e agora to tentando instalar pelo Wine, mas ainda não sei muito como mexer... se você puder me ajudar... meu notebook tem um core i5 4210u, 8gb de ram, 120gb ssd e uma geforce 820m 2gb, acho que não terei problemas para rodar o wartale no linux, outra coisa, só que não sei ainda se vou trocar de distro, pq nessa não consegui ativar a gpu hibrida... Share this post Link to post Share on other sites
DarkLink64 921 Report post Posted August 11, 2020 (edited) Updated 2019-10-14 Install / Update Wine and Winetricks You will need the latest version of wine-stable. Do not install wine-staging due to glitches found in testings. Installation varies from distro to distro. For the best information, please follow the wiki on WineHQ. Here are links to popular distros: Ubuntu: https://wiki.winehq.org/Ubuntu Debian: https://wiki.winehq.org/Debian CentOS: https://wiki.winehq.org/CentOS/RHEL ArchLinux: https://wiki.archlinux.org/index.php/Wine Once you have wine installed or updated. Check the version by utilizing the command in terminal: wine --version terminal The output should say wine-4.0.2 or higher. Next, you need to get the latest version of winetricks. Version 20190912 was used in time of testing. Follow the guide on WineHQ: cd "${HOME}/Downloads" wget https://raw.githubusercontent.com/Winetricks/winetricks/master/src/winetricks chmod +x winetricks sudo cp winetricks /usr/local/bin Source: https://wiki.winehq.org/Winetricks#Installing_winetricks If you are on Ubuntu, instead of the last command, do: sudo cp winetricks /usr/bin Preparation We need to start clean and setup the architecture to Win32. Delete your pre-configured $HOME/.wine folder via terminal command sudo rm -rf $HOME/.wine Setup a Win32 WINEPREFIX with the command WINEARCH=win32 wineboot --init Install required libraries and runtime via winetricks WINEARCH=win32 winetricks corefonts d3dx9_42 d3dx9_43 dinput dinput8 directx9 vcrun2008 vcrun2010 vcrun2013 vcrun2015 vcrun6 Make sure to click through all installation guides for each Visual Studio Runtime Redistributables as necessary such as Install .NET 3.5 via winetricks (forced). winetricks --force dotnet35 You will have to click on any continues that pops up. Install .NET 4.6.1 via winetricks (forced). winetricks --force dotnet461 Configuration Install in $HOME/.wine/drive_c/ folder. Configure wine to emulate a desktop of your liking. Type winecfg in terminal and go to Graphics tab. In this example I chose 1280x720. Press apply and close. Go to the game direction in terminal by cd $HOME/.wine/drive_c/game Running Patcher and Game To run the patcher, make sure you are in the game directory in terminal cd $HOME/.wine/drive_c/game then run the command. wine "launcher.exe" Once game is fully patched. Close it. To run the game, make sure you are in the game directory in terminal cd $HOME/.wine/drive_c/game then run the command. WINEDEBUG=warn+all,-d3d,-d3d_perf,-wgl,-ntdll wine game.exe NOTE: Debug output is required to avoid a race condition in the client. Edited August 11, 2020 by DarkLink64 1 Share this post Link to post Share on other sites
Brawltk 9 Report post Posted August 12, 2020 12 hours ago, DarkLink64 said: Updated 2019-10-14 Install / Update Wine and Winetricks You will need the latest version of wine-stable. Do not install wine-staging due to glitches found in testings. Installation varies from distro to distro. For the best information, please follow the wiki on WineHQ. Here are links to popular distros: Ubuntu: https://wiki.winehq.org/Ubuntu Debian: https://wiki.winehq.org/Debian CentOS: https://wiki.winehq.org/CentOS/RHEL ArchLinux: https://wiki.archlinux.org/index.php/Wine Once you have wine installed or updated. Check the version by utilizing the command in terminal: wine --version terminal The output should say wine-4.0.2 or higher. Next, you need to get the latest version of winetricks. Version 20190912 was used in time of testing. Follow the guide on WineHQ: cd "${HOME}/Downloads" wget https://raw.githubusercontent.com/Winetricks/winetricks/master/src/winetricks chmod +x winetricks sudo cp winetricks /usr/local/bin Source: https://wiki.winehq.org/Winetricks#Installing_winetricks If you are on Ubuntu, instead of the last command, do: sudo cp winetricks /usr/bin Preparation We need to start clean and setup the architecture to Win32. Delete your pre-configured $HOME/.wine folder via terminal command sudo rm -rf $HOME/.wine Setup a Win32 WINEPREFIX with the command WINEARCH=win32 wineboot --init Install required libraries and runtime via winetricks WINEARCH=win32 winetricks corefonts d3dx9_42 d3dx9_43 dinput dinput8 directx9 vcrun2008 vcrun2010 vcrun2013 vcrun2015 vcrun6 Make sure to click through all installation guides for each Visual Studio Runtime Redistributables as necessary such as Install .NET 3.5 via winetricks (forced). winetricks --force dotnet35 You will have to click on any continues that pops up. Install .NET 4.6.1 via winetricks (forced). winetricks --force dotnet461 Configuration Install in $HOME/.wine/drive_c/ folder. Configure wine to emulate a desktop of your liking. Type winecfg in terminal and go to Graphics tab. In this example I chose 1280x720. Press apply and close. Go to the game direction in terminal by cd $HOME/.wine/drive_c/game Running Patcher and Game To run the patcher, make sure you are in the game directory in terminal cd $HOME/.wine/drive_c/game then run the command. wine "launcher.exe" Once game is fully patched. Close it. To run the game, make sure you are in the game directory in terminal cd $HOME/.wine/drive_c/game then run the command. WINEDEBUG=warn+all,-d3d,-d3d_perf,-wgl,-ntdll wine game.exe NOTE: Debug output is required to avoid a race condition in the client. Muito obrigado, vou tentar aqui depois, hoje tenho uns trabalhos da faculdade pra fazer kkkk se eu conseguir eu ja posto aqui o resultado. Share this post Link to post Share on other sites
Brawltk 9 Report post Posted August 13, 2020 (edited) On 8/11/2020 at 8:06 PM, DarkLink64 said: Updated 2019-10-14 Install / Update Wine and Winetricks You will need the latest version of wine-stable. Do not install wine-staging due to glitches found in testings. Installation varies from distro to distro. For the best information, please follow the wiki on WineHQ. Here are links to popular distros: Ubuntu: https://wiki.winehq.org/Ubuntu Debian: https://wiki.winehq.org/Debian CentOS: https://wiki.winehq.org/CentOS/RHEL ArchLinux: https://wiki.archlinux.org/index.php/Wine Once you have wine installed or updated. Check the version by utilizing the command in terminal: wine --version terminal The output should say wine-4.0.2 or higher. Next, you need to get the latest version of winetricks. Version 20190912 was used in time of testing. Follow the guide on WineHQ: cd "${HOME}/Downloads" wget https://raw.githubusercontent.com/Winetricks/winetricks/master/src/winetricks chmod +x winetricks sudo cp winetricks /usr/local/bin Source: https://wiki.winehq.org/Winetricks#Installing_winetricks If you are on Ubuntu, instead of the last command, do: sudo cp winetricks /usr/bin Preparation We need to start clean and setup the architecture to Win32. Delete your pre-configured $HOME/.wine folder via terminal command sudo rm -rf $HOME/.wine Setup a Win32 WINEPREFIX with the command WINEARCH=win32 wineboot --init Install required libraries and runtime via winetricks WINEARCH=win32 winetricks corefonts d3dx9_42 d3dx9_43 dinput dinput8 directx9 vcrun2008 vcrun2010 vcrun2013 vcrun2015 vcrun6 Make sure to click through all installation guides for each Visual Studio Runtime Redistributables as necessary such as Install .NET 3.5 via winetricks (forced). winetricks --force dotnet35 You will have to click on any continues that pops up. Install .NET 4.6.1 via winetricks (forced). winetricks --force dotnet461 Configuration Install in $HOME/.wine/drive_c/ folder. Configure wine to emulate a desktop of your liking. Type winecfg in terminal and go to Graphics tab. In this example I chose 1280x720. Press apply and close. Go to the game direction in terminal by cd $HOME/.wine/drive_c/game Running Patcher and Game To run the patcher, make sure you are in the game directory in terminal cd $HOME/.wine/drive_c/game then run the command. wine "launcher.exe" Once game is fully patched. Close it. To run the game, make sure you are in the game directory in terminal cd $HOME/.wine/drive_c/game then run the command. WINEDEBUG=warn+all,-d3d,-d3d_perf,-wgl,-ntdll wine game.exe NOTE: Debug output is required to avoid a race condition in the client. amigo segui o tutorial certinho e agora travei na hora que copiar os arquivos do jogo pro drive-c, eu nao to conseguindo achar a pasta kkkk ta dificil Consegui achar kkkkk @edit: Consegui fazer funcionar, mas a performance foi muito baixa ? acho que vou ter que aderir a uma maquina virtual... Edited August 13, 2020 by Brawltk Share this post Link to post Share on other sites
DarkLink64 921 Report post Posted August 13, 2020 (edited) 1 hour ago, Brawltk said: amigo segui o tutorial certinho e agora travei na hora que copiar os arquivos do jogo pro drive-c, eu nao to conseguindo achar a pasta kkkk ta dificil Consegui achar kkkkk @edit: Consegui fazer funcionar, mas a performance foi muito baixa ? acho que vou ter que aderir a uma maquina virtual... Com VM vai ser pior ainda. Infelizmente a série U de CPU Intel é muito ruim. Série U da intel é feito pra baixo consumo de energia, onde o uso ideal é só navegar na internet, no máximo ver uns vídeos. Clock é muito baixo e não tem turbo boost que passe dos 3ghz. Wartale é jogo 100% dependente de cpu. Talvez consiga jogar de forma razoável só com dual boot linux e windows mesmo. Edited August 13, 2020 by DarkLink64 Share this post Link to post Share on other sites
Brawltk 9 Report post Posted August 13, 2020 8 hours ago, DarkLink64 said: Com VM vai ser pior ainda. Infelizmente a série U de CPU Intel é muito ruim. Série U da intel é feito pra baixo consumo de energia, onde o uso ideal é só navegar na internet, no máximo ver uns vídeos. Clock é muito baixo e não tem turbo boost que passe dos 3ghz. Wartale é jogo 100% dependente de cpu. Talvez consiga jogar de forma razoável só com dual boot linux e windows mesmo. acho que vai ser o jeito então, pois no windows eu jogava perfeitamente, mas muito obrigado pela ajuda... Share this post Link to post Share on other sites
Luca 226 Report post Posted August 31, 2021 (edited) Existe alguém hoje que consegue jogar Wartale no Linux? Queria opniões. Edited August 31, 2021 by Luca Share this post Link to post Share on other sites