-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.py
More file actions
42 lines (36 loc) · 1.81 KB
/
config.py
File metadata and controls
42 lines (36 loc) · 1.81 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# This configuration is for Minecraft 1.5.1/MCP 7.4.4 combo
# Note: The first column's index is 0
# classes.csv configuration
CLIENT_OBF_CLASS_COL=2 # Column of the obfuscated name for the client jar
SERVER_OBF_CLASS_COL=4 # Column of the obfuscated name for the server jar
NON_OBF_CLASS_COL=0 # Column of the correct name
CSV_CLASS_START_ROW=4 # Number of rows to skip at the beginning
CSV_CLASS_SIDE_COL=None # Column of the side column name
# methods.csv configuration
CLIENT_OBF_METHOD_COL=0 # Column of the obfuscated name for the client jar
SERVER_OBF_METHOD_COL=0 # Column of the obfuscated name for the server jar
NON_OBF_METHOD_COL=1 # Column of the correct name
CSV_METHOD_START_ROW=1 # Number of rows to skip at the beginning
CSV_METHOD_SIDE_COL=2 # Column of the side column name
# fields.csv configuration
CLIENT_OBF_FIELD_COL=0 # Column of the obfuscated name for the client jar
SERVER_OBF_FIELD_COL=0 # Column of the obfuscated name for the server jar
NON_OBF_FIELD_COL=1 # Column of the correct name
CSV_FIELD_START_ROW=1 # Number of rows to skip at the beginning
CSV_FIELD_SIDE_COL=2 # Column of the side column name
# newids.csv configuration
CLIENT_OBF_NEWIDS_COL=0 # Column of the obfuscated name for the client jar
SERVER_OBF_NEWIDS_COL=1 # Column of the obfuscated name for the server jar
NON_OBF_NEWIDS_COL=2 # Column of the correct name
CSV_NEWIDS_START_ROW=1 # Number of rows to skip at the beginning
CSV_NEWIDS_SIDE_COL=None# Column of the side column name
#params.csv configuration (introduced in MCP v6)
CSV_PARAMS_SIDE_COL=2 # Column of the side column name
OBF_PARAMS_COL=0 # Column of the obfuscated name
NON_OBF_PARAMS_COL=1 # Column of the correct name
CSV_PARAMS_START_ROW=1 # Number of rows to skip at the beginning
PACKAGE_DEFAULT=""
PACKAGE_CONSIDERED_DEOBFUSCATED=[
"paulscode",
"com/jcraft",
]