hanklin45110126 / wot-xvm

Automatically exported from code.google.com/p/wot-xvm
0 stars 0 forks source link

xvm 5.0 and cmd #544

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
Since the new format of xvm, there is no need of xvm_stat.exe. Before, I know 
how to run both xvm with wot in cmd. Now I do not know how. Anyway there is a 
work around?

Original issue reported on code.google.com by gaut...@gmail.com on 13 Oct 2013 at 9:56

GoogleCodeExporter commented 8 years ago
WorldOfTanks.exe

Original comment by mr.a.on...@gmail.com on 13 Oct 2013 at 10:13

GoogleCodeExporter commented 8 years ago
I run WorldOfTank.exe in cmd but only WoT run, xvm does not run at all. I use 
this code:
@echo off
start "" "D:\Game\Online\World of Tanks\WorldOfTanks.exe"

Original comment by gaut...@gmail.com on 14 Oct 2013 at 12:19

GoogleCodeExporter commented 8 years ago
Short answer:
You'll need to alter your script to this:
@echo off
cd "D:\Game\Online\World of Tanks\"
start "" "D:\Game\Online\World of Tanks\WorldOfTanks.exe"

Long answer
XVM uses python shipped with the game, and it uses relative paths, if you start 
game in a directory other then where WorldOfTanks.exe is, the current directory 
for WorldOfTanks.exe will be, most likely, is where you windows profile are and 
so XVM will not be able to find any of it's configuration files.

Original comment by HASH.DuO...@gmail.com on 29 Oct 2013 at 5:41