Page 1 of 1

Ok, what's wrong with this.

Posted: Fri Jul 09, 2004 1:37 pm
by kallell

Code: Select all

:autoequip 
/if (${Cursor.Name.Equal[Batwing]}) {
/itemnotify pack4 leftmouseup
} else  /if (${Cursor.ID}!=NULL) { 
    /notify COMBW_CombineArea COMBW_AutoInvButton leftmouseup 
    /delay 1s 


i want the batwing to go in slot 4, and any other item to be auto inventoried.

Posted: Fri Jul 09, 2004 3:48 pm
by wassup
Biggest problem you have is it is bat wing not batwing

Other than that... I would do it this way:

Code: Select all

:autoequip
/if (${Cursor.ID}) {
   /docommand ${If[${Cursor.Name.Equal[bat wing]},/itemnotify pack4 leftmouseup,/autoinv]}
}
You might need to think about a better way to put the bat wings in inventory though. /itemnotify will work as long as there are less than 20 bat wings in the slot, but once you get to 20... it's broken.

afd

Posted: Sat Jul 10, 2004 2:36 am
by kallell
hmm. kinda along same lines, but how would i do this:

What would the code look like to find an item in your inventory, then click on that item?

Posted: Sun Jul 11, 2004 7:21 am
by Digitalxero
something like

Code: Select all

/itemnotify ${FindItem[Your Clicky Item].InvSlot} rightmouseup
if the item is in a bag and the bag isnt open it wont click it