UOGamers Community

This is a sample guest message. Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!

  • To obtain new Razor updates, please reinstall Razor from our new website.

[Macro] Lumberjack

Hilde

Page
[Macro] Lumberjack

This macro chops wood for you, makes boards out of the logs when you reached a certain weight and puts them into your pack horse/llama/beetle. Once a tree is out of wood, you get a new target curser. Just go to the next tree and target it. I assume your char has 125 STR, else you might want to change the weight part.

Setup:

  • I use a double axe for this. You might want to re-target the two "double click" lines if you use some other axe.
  • Organizer-9: Your pack animal is the hot bag. Don't add logs as you want to make boards out of them, but add:
    • boards
    • bark fragment
    • parasitic plant
    • luminescent fungi
    • switch.

Macro:

Code:
!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
 
Top