[Q] /click left auto (What does it do?)

Help section from before the user variable changes that broke all macros

Moderator: MacroQuest Developers

Lane
a hill giant
a hill giant
Posts: 201
Joined: Fri Dec 06, 2002 11:57 am

[Q] /click left auto (What does it do?)

Post by Lane » Fri Jun 20, 2003 5:38 pm

Could someone please verify if I have this down right. I'm trying to figure out how one line works below.

In the following code snipet for a tradeskill macro:

Code: Select all

Sub ClearCursor
    :Start
        /if $cursor()!=NULL {
            /click left auto
            /delay 5
        }
        /delay 0
    /if $cursor()!=NULL /goto :Start
/return
Question here:
/click left auto = Does this find a open spot in your packs and put the item in it?

I'm not sure what the "auto" part does.

Thanks everyone.

-Lane

User avatar
Kint
a hill giant
a hill giant
Posts: 208
Joined: Thu Mar 13, 2003 3:36 am

Post by Kint » Fri Jun 20, 2003 7:02 pm

/click left auto clicks left into your auto equipt spot, effectively finding the first open space in your inventory

Lane
a hill giant
a hill giant
Posts: 201
Joined: Fri Dec 06, 2002 11:57 am

Post by Lane » Sat Jun 21, 2003 12:17 am

Ah. So simple I didn't even relize it. Thank you.

-Lane