Is there a macro or mod that can help disassemble resources automatically instead of just right-clicking each of them one by one?
auto disassemble resources?
-
- Game
- DrMagnus
Welcome to the forums of Runes of Magic EN & US
Rules and Guidelines: Game Rules - Community Guidelines - Terms of Use - RoM Servers Status
Customer Support:
EN/EU Customer Support -
US Customer Support
Get in touch with us: Join our Discord!
Rules and Guidelines: Game Rules - Community Guidelines - Terms of Use - RoM Servers Status
Customer Support:
EN/EU Customer Support -
US Customer SupportGet in touch with us: Join our Discord!
-
-
-
Are you sure?
You want me to right-click 999 times on full lumber stock to dissamble it to simple wood? )))
-
You can write a macro with maybe around 20, depending on the lenght of the name of what you want to disassemble, but no more than that. Remember automatization is not allowed, so yes, you have to click (put the item in the action bar, better press one key than destroy your mouse).
-
-
This one [Matumwandeln von blau nach weis] is written to disassemble resource, you just have to edit UseAction(8).
-
This one [Matumwandeln von blau nach weis] is written to disassemble resource, you just have to edit UseAction(8).
Thank you dear GM!
Question, what if I would like to stop the macro running after it's already started?
-
then you'd need a second macro and a additional global variable
/run function a()UseAction(8)end;a()
=>
/run A=1;function a()if A then UseAction(8)end;end;a()
Macro 2:
/run A=nil
didn't test but should work.
There is afaik no simple way to stop a macro
-
didn't test but should work.
Confirmed, it's working fine