Log in to ZYGOR
Log in with social media
OR
Log in with Zygor account

Announcement

Collapse
No announcement yet.

Macro to toggle Quest AutoAccept and AutoTurn-in

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Macro to toggle Quest AutoAccept and AutoTurn-in

    I switch these 2 options on and off all the time, as sometimes I like to read the quests, sometimes I don't.

    Code:
    /run p=_G['ZGV'].db.profile; for k,v in pairs({"autoturnin", "autoaccept" }) do p[v] = not p[v]; print("Zygor " .. v .. ": \124cff" .. (p[v] and "00ff00Enabled" or "ff0000Disabled") .. "\124r") end;
    Produces the following output:

    #2
    Thats nice, thank you.

    is there a similar way to get the current objective target from the guide and fake a magic button?
    I cant seem to find the proper variable from the LUA.

    Comment


      #3
      Thanks for this. Works great. Now some of those oddball quests I haven't done a thousand times I can actually read through.
      Rob Cornell

      Author of DARKER THINGS and DARK LEGION.

      Comment

      Working...
      X