mirror of
https://github.com/djhackersdev/bemanitools.git
synced 2024-11-14 18:27:36 +01:00
4a333d0b13
Chinese IIDX styles will hang if bemanitools can't mount the dev\\nvram and dev\\raw folders. This simply adds commands to their gamestart.bat files to create those directories if they don't exist, preventing the game from hanging.
18 lines
453 B
Batchfile
18 lines
453 B
Batchfile
@echo off
|
|
|
|
cd /d %~dp0
|
|
|
|
if not exist d mkdir d
|
|
if not exist e mkdir e
|
|
if not exist f mkdir f
|
|
|
|
if not exist e\avs_conf mkdir e\avs_conf
|
|
if not exist e\avs_conf\CONF mkdir e\avs_conf\CONF
|
|
if not exist e\avs_conf\CONF\NVRAM mkdir e\avs_conf\CONF\NVRAM
|
|
if not exist e\avs_conf\CONF\RAW mkdir e\avs_conf\CONF\RAW
|
|
|
|
if not exist dev\nvram mkdir dev\nvram
|
|
if not exist dev\raw mkdir dev\raw
|
|
|
|
inject iidxhook4-cn.dll bm2dx.exe -D --config iidxhook-18-cn.conf %*
|