Quote:
Originally Posted by Wrathchild
The macro will loop, taking no actions, once you reach that weight.
|
Which reminds me of a general tip for razor and razor macros... Bind "Stop Current Macro" to something on your keyboard.
example:
Code:
if weight >= (maxstones)
end if
...
the rest of your mining macro
click on the if statement, choose "Begin Recording Here", and hit your Stop Current Macro hotkey.
this will insert "Exec> Stop Current Macro" in the if block as well as stop *recording* into the macro.
definitely not a great solution to this scenario but ... THE MORE YOU KNOW!