Skip to content

Commit

Permalink
add Dontskipvid step option command
Browse files Browse the repository at this point in the history
  • Loading branch information
Neogeekmo committed Apr 24, 2024
1 parent a70ce14 commit 806cc82
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 5 deletions.
6 changes: 6 additions & 0 deletions Commands.lua
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ function AprRC.command:SlashCmd(input)
print("|cffeda55f/aprrc help, h |r- " .. L_APR["HELP_COMMAND"])
print("|cffeda55f/aprrc noachievement |r- " .. "DontHaveAchievement")
print("|cffeda55f/aprrc noarrow |r- " .. "NoArrow")
print("|cffeda55f/aprrc notskipvid, nsv |r- " .. "Dontskipvid")
print("|cffeda55f/aprrc pickupdb |r- " .. "PickUpDB")
print("|cffeda55f/aprrc qpartdb |r- " .. "QpartDB")
print("|cffeda55f/aprrc qpartpart |r- " .. "QpartPart")
Expand Down Expand Up @@ -87,6 +88,11 @@ function AprRC.command:SlashCmd(input)
print("|cff00bfffGrind|r Added")
end)
return
elseif inputText == "notskipvid" or inputText == "nsv" then
local currentStep = AprRC:GetLastStep()
currentStep.Dontskipvid = 1
print("|cff00bfffDontskipvid|r Added")
return
elseif inputText == "noarrow" then
local currentStep = AprRC:GetLastStep()
currentStep.NoArrow = 1
Expand Down
9 changes: 4 additions & 5 deletions Event.lua
Original file line number Diff line number Diff line change
Expand Up @@ -459,10 +459,10 @@ end
-- - Button / SpellButton / Achievement (autoComplete)

-- Check how
-- - DroppableQuest = { Text = "Tideblood", Qid = 50593, MobId = 130116 },
-- - DroppableQuest = { Text = "Tideblood", Qid = 50593, MobId = 130116 }, (voir sur les loots si on peut pas vérif si on loot pas une quete, et save avant la target )
-- - DropQuest ["DropQuest"] = 62567 (questID)

-- - Treasure ["Treasure"] = 31401 (questID)
-- - Treasure ["Treasure"] = 31401 (questID) (how ?)

-- sur l'action d'un DB check si y a la quest ID dans un PickUpDB et l'ajouter automatiquemejnt
-- - QpartDB
Expand All @@ -473,18 +473,17 @@ end
-- - GroupTask ["GroupTask"] = 51384, (the questId from Group, step to check if player want to do the group quest)
-- - QuestLineSkip ???? (block group quest if present) ["QuestLineSkip"] = 51226,

-- - QpartPart (rework ?)
-- - QpartPart (rework ?) -> button/command
-- - TrigText (rework ?)

---------------------
-- V3 - maybe
-- V3 - maybe in command no button
---------------------
-- - DoIHaveFlight ?? check si on peut en faire quelque chose pour des waypoints (avec ajout unAutoSkipableWaypoint)
-- - NoAutoFlightMap
-- - PickedLoa
-- - SpecialETAHide ??
-- - Bloodlust
-- - Dontskipvid
-- - DenyNPC

-- - ExitTutorial ["ExitTutorial"] = 62567 (IsOnQuest(questID)
Expand Down

0 comments on commit 806cc82

Please sign in to comment.