Rock5,
I found the need to be able to disable autoquesting in Dailynotes. (for being able to do separate quests from a bulletin board for example) so I modified your Autoquest userfunction to allow me to do so. Feel free to take a look and make any changes to suit your preferences and re-share/update the post.
Added optional argument of "on" or "off" to enable automated turning off of autoaccepting quests:
DN_AutoQuest(questid, [state]) -- optional state should be "on" or "off". Default is "on". Anything other than ("off" or "Off" or "OFF") will turn the autoaccept of the specified quest on, including nil.
So at the beginning of my waypoint file, I will do
Code: Select all
QuestID = 123456 -- ID of Quest
DN_AutoQuest(QuestID) -- activate DailyNotes Autoquest
then at the end of the waypoint, I will use
to turn off auto accepting of that quest.
NoobBotter
Update: Come to think about it, I never did do a check to see if my update actually disables the autoquest of a particular quest. It doesn't throw an error so I assumed it works. Maybe tonight I'll verify if it actually does what I intended.