Skip to content

Commit

Permalink
Add InstanceQuest command
Browse files Browse the repository at this point in the history
  • Loading branch information
Neogeekmo committed May 3, 2024
1 parent c68194a commit 5153ad5
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions Commands.lua
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ function AprRC.command:SlashCmd(input)
print("|cffeda55f/aprrc gender |r- " .. "Gender")
print("|cffeda55f/aprrc grind |r- " .. "Grind")
print("|cffeda55f/aprrc help, h |r- " .. L_APR["HELP_COMMAND"])
print("|cffeda55f/aprrc instance |r- " .. "InstanceQuest")
print("|cffeda55f/aprrc noachievement |r- " .. "DontHaveAchievement")
print("|cffeda55f/aprrc noarrow |r- " .. "NoArrow")
print("|cffeda55f/aprrc notskipvid, nsv |r- " .. "Dontskipvid")
Expand Down Expand Up @@ -88,6 +89,11 @@ function AprRC.command:SlashCmd(input)
print("|cff00bfffGrind|r Added")
end)
return
elseif inputText == "instance" then
local currentStep = AprRC:GetLastStep()
currentStep.InstanceQuest = true
print("|cff00bfffInstanceQuest|r Added")
return
elseif inputText == "notskipvid" or inputText == "nsv" then
local currentStep = AprRC:GetLastStep()
currentStep.Dontskipvid = 1
Expand Down

0 comments on commit 5153ad5

Please sign in to comment.