-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsettings.default.jsonc
91 lines (91 loc) · 4.39 KB
/
settings.default.jsonc
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
82
83
84
85
86
87
88
89
90
91
{
// The installation folder of AirtestIDE. There should be a program named "AirtestIDE.exe" under this path.
"AirtestIDEDirectory": "D:\\Program Files\\AirtestIDE\\",
// Android emulator ADB url. This default is for LDPlayer and BlueStack 5. Run `adb devices` to find the name of your device. (Port 5037 is fixed.)
"DeviceAdbUrl": "android://127.0.0.1:5037/emulator-5554",
// Log directory that records each run. Default: "log".
"LogReportDirectory": "log",
// Show a HTML report after each run. You can review bot's decision step by step.
"ShowLogReportAfterRun": true,
// Remove everything under "LogReportDirectory" (past logs) before running bot. Saves disk space.
"CleanUpLogBeforeRun": true,
// Which path to save screenshots (relative to the bot folder). This won't be cleaned up automatically.
"ScreenshotPath": "screenshots",
"ScriptSettings": {
// Specify which stamina recovery to use for all game modes.
"Stamina": {
// Select and order as you like from ["small", "medium", "large"].
"RecoveryOrder": ["small", "medium", "large"],
// When using small stamina, how many to use at each time. Recommend to have at least 3.
"SmallUseTimes": 7
},
// Repeatedly farm dark daily quests and quit if no purple item found.
"ResetFarming": {
// Specify which characters and which difficulties to reset farm quests. Easy is allegedly more efficient.
"Quests" : {
"Rion": ["easy"],
"Gayle": ["easy"],
"Dimos": ["easy"],
"Akeha": ["easy"],
"Argo": ["easy"],
"063y": ["easy"],
"F66x": ["easy"],
"Lars": ["easy"],
"Griff": ["easy"],
"Noelle": ["easy"],
"Levania": ["easy"],
"Fio": ["easy"]
},
// Maximum attempts for each quest.
"MaxAttempts": 300,
// Whether or not select the loadout team named "Reset" (must be exactly the same).
"SelectResetTeam": true,
// Whether or not save a screenshot before quiting a round.
"SaveScreenshot": true
},
// Complete all specified dark daily quests without quiting.
"DarkDaily": {
// Specify which characters and which difficulties to complete daily quests.
"Quests" : {
"Rion": ["easy", "normal"],
"Gayle": ["normal", "hard"],
"Dimos": ["normal", "hard"],
"Akeha": ["normal", "hard"],
"Argo": ["easy", "normal"],
"063y": ["normal", "hard"],
"F66x": ["easy", "normal"],
"Lars": ["normal", "hard"],
"Griff": ["normal", "hard"],
"Noelle": ["easy", "normal"],
"Levania": ["normal", "hard"],
"Fio": ["easy", "normal"]
},
// Whether or not select the loadout team named "DarkDaily" (must be exactly the same).
"SelectDarkDailyTeam": true
},
// Repeatedly farm dungeons for memoirs.
"Dungeon": {
// Choose from: ["Dynast", "Officer", "Witch", "Aberrant"]
"Quest": "Aberrant",
// How many x10 loops to perform
"Attempts": 100,
// Whether or not select the loadout team named "Dungeon" (must be exactly the same).
"SelectDungeonTeam": true
},
// Repeatedly battle in arena. The bot loops clicks for focus and skills, and occasionally check if fight has ended.
"Arena": {
// Whether use gems to increase BP.
"UseGems": false,
// How many fights to perform.
"Attempts": 10,
// Which skills to use eagerly. Recommend to only put in short CD ones. 3-1 means the 3rd (rightmost) unit's 1st skill (top).
"Skills": ["2-2", "2-1", "1-2", "1-1"],
// Which opponent unit to focus. 1-3 for the positions from top to bottom, 0 means no focus.
// Since it's a loop without detection, it will focus, then un-focus, then focus, etc.
// Experiment with this, it doesn't guarantee better result.
"Focus": 0,
// Whether or not save a screenshot after each fight.
"SaveScreenshot": true
}
}
}