1. Enable "/run quest completed?" commands please

    If youre in the middle of a chain and you dropped one at some point and then took a hiatus and dont remember which part youre on or if you even started it-
    You should be able to type something like this example:
    /run print(C_QuestLog.IsQuestFlaggedCompleted(5098))

    and it would give you a response either true or false if you completed it or not.
    Is there a way to PLEASE add this function into Lorderon?
    Maybe the command is different here idk....
    Is there currently even a way to find out if you did a quest or not?

  2. Is there currently even a way to find out if you did a quest or not?
    Everyquest can query the server for your quests, however it isn't perfect bc the sripting isn't 1:1 of retail WotLK.

  3. If you want to check a specific quest ID you can try this macro. You may have to run it a second time after a few seconds due to how it works. QueryQuestsCompleted() returns immediately and the QUEST_QUERY_COMPLETE event is triggered when the data is actually available, this macro goes straight to checking your client's cache without waiting.

    Code:
    /run QueryQuestsCompleted() print(GetQuestsCompleted()[11488] and "Complete" or "Incomplete")

  4. Also, you may have to run that macro a couple times before it works.

  5. If you want to check a specific quest ID you can try this macro. You may have to run it a second time after a few seconds due to how it works. QueryQuestsCompleted() returns immediately and the QUEST_QUERY_COMPLETE event is triggered when the data is actually available, this macro goes straight to checking your client's cache without waiting.

    Code:
    /run QueryQuestsCompleted() print(GetQuestsCompleted()[11488] and "Complete" or "Incomplete")
    So.... someone in game told me that and nothing happened so I just want to clarify with you-
    do i type this whole thing in one go? /run QueryQuestsCompleted() print(GetQuestsCompleted()[11488] and "Complete" or "Incomplete")
    Or do I type it this way: /run QueryQuestsCompleted()
    then press enter then type print(GetQuestsCompleted()[actual quest ID]
    then press enter

    Do I put this whole thing? and "Complete" or "Incomplete")
    or do I just type like this: /run QueryQuestsCompleted() print(GetQuestsCompleted()[Quest ID] "Complete" or "Incomplete")
    Like, you gotta be more specific about how its sposed to look in game

    Also... are the quest ID for this server somehow different than wowhead?
    I swear nothing happened no matter how I typed it when my warlock was trying to check for all along the watchtowers

  6. You have to type it entirely, and press enter.

    You have to replace the number for the id of the quest you want to check. (Find the quest in wowhead, then look at the id number in the url)

    As I said, it's possible that you have to run the command several times for it to work (you'll get an error or no output until it works)

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •