mirror of
https://github.com/djhackersdev/bemanitools.git
synced 2024-11-14 10:17:38 +01:00
edd0bda3bb
No significant changes on the game's side. Tooling that works for 27 and 28 also works fine for 29
17 lines
474 B
Batchfile
17 lines
474 B
Batchfile
@echo off
|
|
cd /d %~dp0
|
|
|
|
if not exist dev mkdir dev
|
|
if not exist dev\e mkdir dev\e
|
|
if not exist dev\g mkdir dev\g
|
|
if not exist dev\nvram mkdir dev\nvram
|
|
if not exist dev\raw mkdir dev\raw
|
|
if not exist dev\raw\log mkdir dev\raw\log
|
|
if not exist dev\raw\fscache mkdir dev\raw\fscache
|
|
|
|
for /R prop\defaults %%D in (*.*) do (
|
|
if not exist dev\nvram\%%~nxD copy /y prop\defaults\%%~nxD dev\nvram
|
|
)
|
|
|
|
launcher -H 134217728 -B iidxhook9.dll bm2dx.dll --config iidxhook-29.conf %*
|