Tradeskill Combiner - New UI
Posted: Thu May 20, 2004 7:28 pm
This tradeskill macro will make any recipe. Just bring up the tradeskill UI, select the recipe from the list box, then run the macro. There are lots of macros that do tradeskills, but this is just the one I wrote while no other ones worked with the new UI. So take your own pick.
- It will keep doing the recipe until it runs out of a component.
- It echo's skill ups to the MQ2 window with the tradeskill name and skill number.
- Works with UI changes from 17th May zip onwards.
SecretToo
-------------------------------------------
- It will keep doing the recipe until it runs out of a component.
- It echo's skill ups to the MQ2 window with the tradeskill name and skill number.
- Works with UI changes from 17th May zip onwards.
SecretToo
-------------------------------------------
Code: Select all
| Tradeskill macro to perform Combine and Autoinv one a selected recipe
| Usage: Bring up Tradeskill Window, select Recipe, then run the macro.
| SecretToo v1.1 - 2nd May 2004 - Initial version
| 15th May 2004 - skill ups and cursor handling
| 20th May 2004 - window idents fixed for 17th May zip
|
#turbo 10
#event EvtNoMoreStuff "#*#you don't have everything you need for this recipe#*#"
#event EvtSkillUp "You have become better at #1#! (#2#)"
Sub Main
:mainloop
/notify COMBW_CombineArea COMBW_CombineButton leftmouseup
/delay 1s
/doevents
:autoequip
/newif (${Cursor.ID}!=NULL) {
/notify COMBW_CombineArea COMBW_AutoInvButton leftmouseup
/delay 1s
/goto :autoequip
}
/doevents
/goto :mainloop
/return
Sub Event_EvtNoMoreStuff(string Line)
/echo Out of components!
/popup Out of components!
/squelch /endmac
/return
Sub Event_EvtSkillUp(string Line, string skillname, string skillnum)
/echo Skill Raise! ${skillname} is now ${skillnum}.
/return