Deleting writ quests

madhater

Active Member
Is it possible to bot deleting the same named quest over and over again?

I'm having lag issues with the craft bot and sometimes it will get the writ quest but not finish the script, I get a error that a writ quest cannot be accepted, the bot will close and i will have a writ in my journal, with no timer countdown. So i have to delete by hand then /craft and wait then start rush orders again.

Or is their anyway to add this to the craft bot writ script where it will look to see that i have a writ before it says i cannot get a writ and closes out?
 

Nuprecon

Active Member
Code:
EQ2UIPage[Journals,JournalsQuest].Child[button,TabPages.Active.After.DeleteButton]:LeftClick


; indicates an EQ2uipage found in the EverQuest 2 Directory/UI/Default
EQ2UIPage
; indicates the eq2ui_journals.xml file directly
[Journals,
;indicates the UI Parent 
JournalsQuest].
;indicates the UI Child type
Child[button,
;drills down through all the siblings (correct termanalagy?)
TabPages.Active.After.DeleteButton]
http://eq2.isxgames.com/wiki/index.php?title=ISXEQ2:Eq2uipage_(Data_Type)
 

digimiles

Active Member
Code:
EQ2UIPage[Journals,JournalsQuest].Child[button,TabPages.Active[B].After[/B].DeleteButton]:LeftClick


; indicates an EQ2uipage found in the EverQuest 2 Directory/UI/Default
EQ2UIPage
; indicates the eq2ui_journals.xml file directly
[Journals,
;indicates the UI Parent 
JournalsQuest].
;indicates the UI Child type
Child[button,
;drills down through all the siblings (correct termanalagy?)
TabPages.Active.After.DeleteButton]
http://eq2.isxgames.com/wiki/index.php?title=ISXEQ2:Eq2uipage_(Data_Type)


Remove the ".After" for profit UI
 
Top Bottom