Skip to content

Commit

Permalink
Adds domain 9 daily bounties & crew missions for quest completions
Browse files Browse the repository at this point in the history
  • Loading branch information
fadillzzz committed Apr 2, 2024
1 parent 39dc46f commit 951098d
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/feats/quest.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#include "quest.hpp"
#include "../globals.hpp"
#include "../logger/logger.hpp"
#include <regex>

namespace Feats {
Expand Down Expand Up @@ -44,13 +45,19 @@ namespace Feats {
ImGui::SameLine();

if (ImGui::Button("Complete Daily")) {
// Vera daily bounties
completeQuestsWithFilter(std::regex("rv\\d{6}"));
// Domain 9 daily bounties
completeQuestsWithFilter(std::regex("jy\\d{6}"));
}

ImGui::SameLine();

if (ImGui::Button("Complete Weekly")) {
// Weekly activities
completeQuestsWithFilter(std::regex("[aA]ctivityquest\\d{3}"));
// Crew missions
completeQuestsWithFilter(std::regex("gh\\d{6}"));
}

ImGui::SameLine();
Expand Down

0 comments on commit 951098d

Please sign in to comment.