-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathconfig.txt
81 lines (76 loc) · 3.57 KB
/
config.txt
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
###############################################
# Options for picking moves #
###############################################
# It is recommended to set at least #
# one of them to True #
###############################################
# An RNG approach that picks legal moves. #
# Biased towards picking moves near the start #
# of the list that are typically faster: #
# #
# [select = True](default: True) #
# #
###############################################
# Randomise completely shuffles legal moves #
# for first 60 moves. Randomise is ignored if #
# Select is set to 'True' #
# #
# [randomise = False](default: False) #
# #
###############################################
###############################################
# Logging Level #
###############################################
# This can be adjusted to your liking #
# Only use level 5+ if needed #
# Levels 6 and 7 will spam your console #
# and log file, use only when unavoidable #
###############################################
# 0 - Logging Disabled #
# 1 - Logs only new frame records #
# 2 - Logs init related stuff #
# 3 - Logs restarts + optimizations #
# 4 - Currently unused #
# 5 - Logs some stuff for debugging #
# 6 - Logs workers every 1k iterations #
# 7 - Logs everything (debugging mode) #
###############################################
# [logLevel = 3] (default: 3) #
###############################################
###############################################
# Multiprocessing #
###############################################
# The worker count defines how many instances #
# of the script will be running at the same #
# time. #
# It is recommended that you set it lower or #
# at maximum equal to the number of #
# cores/threads that your CPU has available. #
# Keep in mind that those threads will be at #
# around 85%~95% from running this script, if #
# you need your computer for something else #
# at the same time, set the worker count to #
# 2 less than the number of cores/threads of #
# your CPU (depending on how many you need #
# for your other activities) #
###############################################
# [workerCount = 4] (default: 4) #
###############################################
###############################################
# Username #
###############################################
# Your username under which your records are #
# Uploaded to the remote server #
# [Username = DefaultUser] #
###############################################
###############################################
# [Version = 3.1.1] #
###############################################
###############################################
# Perform Update Check #
###############################################
# Does the update check at the start. #
# Don't turn this off unless you're testing #
# unreleased versions or are a developer. #
# [performUpdateCheck = True] (default: True) #
###############################################