Quote:
Originally Posted by MasterMacaco
Yes in my case I have two toon that arent level 40. Also I would like to ask, combat script, can it sell items by portable store?
|
I gonna edit the event script then.
Hm yes that should be possible but you need to write the sell path yourself
it should do this
1. press "i" to open inventory
Code:
SendKey=0x49;
Delay=500;
2. click at the portable shop icon
Code:
Mouse=[portable shop X],[portable shop Y];
Delay=500;
3. sell all items from the array
Code:
SellItems=%ARRAY2,[sellbutton X],[sellbutton Y];
4. close the shop again
Code:
SendKey=0x1B;
Delay=15;
SendKey=0x1B;
MemPtrWrite=%AddrESChwnd,%OffsetESChwnd,142,BYTE;