A questionabout my macro in concerns of unattended macroing.
Posted: Wed Feb 17, 2010 1:38 am
I currently have a macro for lumberjacking. Here is the coding for it
What it does is chop away at a tree after I set it with last target. After it runs out of wood, It dumps the wood on my pack horse then waits on SetLastTarget for 5 minutes. More than enough time to manually run to another tree and target it, where it does the same process over again.
My question is this: If I were to use this macro, target a tree, then browse the internet, use the bathroom etc, would it qualify as unattended gathering?
Code: Select all
!Loop
Assistant.Macros.DoubleClickTypeAction|3915|True
Assistant.Macros.WaitForTargetAction|3
Assistant.Macros.LastTargetAction
Assistant.Macros.PauseAction|00:00:00.5000000
Assistant.Macros.IfAction|4|0|you can't use an axe on that.
Assistant.Macros.SetLastTargetAction
Assistant.Macros.EndIfAction
Assistant.Macros.IfAction|4|0|too far away.
Assistant.Macros.SetLastTargetAction
Assistant.Macros.EndIfAction
Assistant.Macros.IfAction|4|0|the requested target is out of range, last target not executed!
Assistant.Macros.SetLastTargetAction
Assistant.Macros.EndIfAction
Assistant.Macros.IfAction|4|0|there's not enough wood here to harvest.
Assistant.Macros.IfAction|5|1|400
Assistant.Macros.ForAction|3
Assistant.Macros.DoubleClickTypeAction|3915|True
Assistant.Macros.WaitForTargetAction|30
Assistant.Macros.TargetTypeAction|False|7133
Assistant.Macros.PauseAction|00:00:01
Assistant.Macros.EndForAction
Assistant.Macros.HotKeyAction|0|Organizer Agent-9
Assistant.Macros.EndIfAction
Assistant.Macros.SetLastTargetAction
Assistant.Macros.EndIfAction
Assistant.Macros.PauseAction|00:00:00.7000000
My question is this: If I were to use this macro, target a tree, then browse the internet, use the bathroom etc, would it qualify as unattended gathering?