Het forum

World of Tanks Replays

Auteur Antwoorden
RJ_GamingBoss Maandag 12 Mei 2014 om 18:14
RJ_GamingBossAnonymous

I want to view my World of tanks replay but when I choose what program I want to open it with (As in set the default Program) WorldofTanks.exe does not show up because Linux doesn't open it as a program but instead uses Wine. Is there some way I can view my replays on Linux?
petch Maandag 12 Mei 2014 om 19:26
petch

you can try to associate the files with
playonlinux --run "World Of Tanks" %f
If you're allowed to; Otherwise, you'll have to create a small wrapper script like
#!/bin/bash
exec playonlinux --run "World Of Tanks" "$@"

chmod +x it and associate the extension to this wrapper
RJ_GamingBoss Maandag 12 Mei 2014 om 21:54
RJ_GamingBossAnonymous

you can try to associate the files with
playonlinux --run "World Of Tanks" %f
If you're allowed to; Otherwise, you'll have to create a small wrapper script like
[code=console]
#!/bin/bash
exec playonlinux --run "World Of Tanks" "$@"
[/code]
chmod +x it and associate the extension to this wrapper

Quote from petch

I am still new to Linux so I am not sure how to associate the file with the WoT.exe file.