Does the /script to check if quest completion no longer work?

Sitting here messing around, and googling different scripts for about 20 minutes now. Nothing is working. I copy and paste directly, try the ID from multiple quests, and Nothing links in chat to confirm completion or not.

Was this removed?

How old is the script? The underlying interpreter gets changes quite frequently. It may have a new format needed.

The post was 2018, the one I copied from.

/script print(IsQuestFlaggedCompleted(1952))

I also tried

/run for k, v in pairs({ QuestCompleted = QUEST-ID}) do print(format("%s: %s", k, IsQuestFlaggedCompleted(v) and “\124cff00ff00Yes\124r” or “\124cffff0000No\124r”)) end

Changing (Quest - ID) for the numerical value.

None worked

Just trying to figure out which of my 29 alts has finished the Mythic Raid Skip quests… without zoning each one in (just to forget again)

Edit: “37031” Is the ID for the Sigil of the Black Hand (Mythic) Quest I am trying to figure out.

Possibly, but you can use this tool:

I can’t find the Raid zone quest there. Granted, I did a quick glimpse…

Looking further in, and I only see open world zones. I may be blind - but can someone point me in the right direction if the macro is infact gone.

The updated quest completion macro for 9.0 is:

/script print(C_QuestLog.IsQuestFlaggedCompleted(43812))

4 Likes

Bro, I could kiss you. Where can you be kept up to date on this?

I just did a google search and double checked in game. :slight_smile:

What did you google search?

I was searching “WoW Quest completion macro”, “WoW Quest completion script”, ect ect…

and I got those other macros

quest completion script wow 9.0

Hmmm…
I didn’t consider adding in 9.0 as I didn’t know they get outdated. Thank you

Every expansion the API gets updated in some way. Sometimes from patch to patch as well, that’s why addons break and need updates. If ever something isn’t working for you, try to search for the latest info you can find on it as likely, other people have had the same issues.

In this case, I found the script over on the EU forums.

I appreciate the insight and the information. Thank you

1 Like

^ Confirmed. Good stuff.