i am not sure if it just dont work in the new ui or what useage is /mouseto auto right?
keeps telling me all the differnt useages when it comes across that in code
Moderator: MacroQuest Developers

Unless it was very recently broken, /click left auto has always worked for me in the oldUI. Based on what you are saying, it sounds like you are trying to possibly macro foraging. (Can't think of any other abilities that produce an item off the top of my head). EDIT: well, theres fishing, but I guess I'm confused about your listed 100s delay... So I really don't have any idea what ability you are playing with... If thats what you are trying to do, give this a shot:nikeman wrote:bacily this is what am trying to do
Code: Select all
sub main :loop /doability 1 /mouseto auto /click left auto(know the auto doest work here wish it did) /delay 1000 /goto :loop end main
Code: Select all
| - foraging.mac -
| Change the Define below to the actual Foraging ability name;
| I don't know it.
#define ForaSkill Forage
sub Main
/cleanup
:Forage
/if n $char(ability,"ForaSkill")<=0 {
/doevents
/goto :Forage
}
/doability "ForaSkill"
/doevents
/delay 2
/if "$cursor()"=="TRUE"
/click left auto
/goto :Forage
/return