forked from Grasscutters/Grasscutter
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Jaida Wu <[email protected]>
- Loading branch information
Showing
2 changed files
with
31 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
@rem | ||
@rem Copyright (C) 2002-2022 MlgmXyysd All Rights Reserved. | ||
@rem | ||
|
||
@echo off | ||
pushd %~dp0 | ||
set CUR_PATH=%~dp0 | ||
|
||
@rem This will not work if your java or mitmproxy is in a different location, plugin as necessary | ||
@rem this just saves you from changing your PATH | ||
|
||
@rem Executable Path | ||
@rem Note: Fill DO_NOT_CHECK_PATH if you need to run it from PATH | ||
@rem without detecting whether the executable file exists | ||
set JAVA_PATH=C:\Program Files\Java\jdk1.8.0_202\bin\ | ||
set MITMDUMP_PATH=%CUR_PATH% | ||
set MONGODB_PATH=%CUR_PATH% | ||
|
||
@rem Utility Path | ||
set SERVER_JAR_PATH=%CUR_PATH% | ||
set DATABASE_STORAGE_PATH=%CUR_PATH%resources\Database | ||
|
||
@rem Utility Name | ||
set SERVER_JAR_NAME=grasscutter.jar | ||
set PROXY_SCRIPT_NAME=proxy |