You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
1.5.8 with new flags --ear and --close-game, add expedition to setting (#35)
* better events selection menu for afk
* new flag `--ear`
* new flag `--close-game`
* add expedition to setting
* 1.5.8
Co-authored-by: 9-9-9-9 <9-9-9-9>
booleanaddMoreFlags = readYesNoInput("Do you want to add some add some flags? (Yes/No, empty is No)", String.format("You can pass flags like '--exit=3600'/'--steam'/'--all'/'--help'... here. For list of supported flags available for each function, please run file '%s'", scriptFileName("help")), true);
128
+
booleanaddMoreFlags = readYesNoInput("Do you want to add some add some flags? (Y/N, empty is No)", String.format("You can pass flags like '--exit=3600'/'--steam'/'--all'/'--help'... here. For list of supported flags available for each function, please run file '%s'", scriptFileName("help")), true);
userConfig = getPredefinedUserConfigFromProfileName("You want to do Raid/World Boss so you have to specific profile name first!\nSelect an existing profile:");
61
+
if (doRaid || doWorldBoss || doExpedition) {
62
+
userConfig = getPredefinedUserConfigFromProfileName("You want to do Raid/World Boss/Expedition so you have to specific profile name first!\nSelect an existing profile:");
info(ColorizeUtil.formatInfo, "You have selected %s mode of %s", userConfig.getRaidModeDesc(),
71
72
userConfig.getRaidLevelDesc());
72
-
} else//noinspection ConstantConditions
73
-
if (doWorldBoss) {
74
-
info(ColorizeUtil.formatInfo, "You have selected world boss %s", userConfig.getWorldBossLevelDesc());
75
-
warn("This function is solo only and does not support select mode of World Boss (Normal/Hard/Heroic), only select by default So which boss do you want to hit? Choose it before turn this on");
73
+
} elseif (doWorldBoss) {
74
+
info(ColorizeUtil.formatInfo, "You have selected world boss %s", userConfig.getWorldBossLevelDesc());
75
+
warn("This function is solo only and does not support select mode of World Boss (Normal/Hard/Heroic), only select by default So which boss do you want to hit? Choose it before turn this on");
76
+
}
77
+
78
+
if (doExpedition) {
79
+
try {
80
+
info(ColorizeUtil.formatInfo, "You have selected to farm %s of Expedition", userConfig.getExpeditionPlaceDesc());
81
+
expeditionPlace = userConfig.expeditionPlace;
82
+
} catch (InvalidDataExceptionex2) {
83
+
warn("You haven't specified an Expedition door to enter so you have to select manually");
0 commit comments