I am trying to ues the /macro sellitem that came with the trial, but cant quite figure it out. I know it is right in front of me and I can't see it, I want to be able to click on the merchant then sell the "bottle" to him and sell all the "bottles" until my backpacks are empty, am I doing this right?
If not could someone maybe help
when i did it said could not find null ...
/emo pulls out hair
Code: Select all
| - SellItem.mac -
|
| Usage: /macro SellItem "Bottle"
|
#include routines.mac
Sub Main
/varset v1 "$cursor(name)"
/click left auto
/click right target
/delay 5
/sendkey down shift
:Selling
/finditem "$v1"
/if $find()==FALSE /goto :Done
/click left merchant sell
/delay 2
/goto :Selling
:done
/sendkey up shift
/press esc
/return