Anyway, seems to freeze and i cant figure out where i'm missing a delay!
In order to run this, you just need to be within clicking distance of ANY banker and it'll work.
Any help would be great thanks
Anyway here it is:
Code: Select all
| -- Bank.mac
| -- Written by Draekz
| -- Date: 02/03/04
|
| -- To run this macro, just be near a banker close enough to target and run it.
| -- It should target and open bank, convert all money to its highest form and
| -- then move all your plat to your shared bank slot and the rest of the change
| -- to the current characters bank.
#turbo
Sub Main
/target banker
/click right target
/delay 1s
| -- In Solaria MQ2 UI this clicks on the CHANGE button in your BANK WINDOW **MUST EDIT LOC TO
| -- MATCH YOUR CHANGE BUTTON LOC in BANK WINDOW .. Use /mousepos for your LOC
/click left 70 407
/delay 1
/if $char(plat,bank)!="0" {
/mouseto bank plat
/sendkey down shift
/click left
/sendkey up shift
/delay 1
/goto :Plat
}else
/goto :Plat
/delay 1
/return
| -- This clicks on your PLAT in your INVENTORY WINDOW
:Plat
/if $char(plat)=="0" /goto :Gold
/mouseto plat
/sendkey down shift
/click left
/sendkey up shift
/delay 1
| -- This clicks on your shared PLAT bank slot.
/mouseto bank shared
/click left
/delay 1
| -- Puts Gold in Bank
:Gold
/if $char(gold)=="0" /goto :silver
/mouseto gold
/sendkey down shift
/click left
/sendkey up shift
/mouseto bank gold
/click left
/delay 1
| -- Puts Silver in Bank
:Silver
/if $char(silver)=="0" /goto :Copper
/mouseto silver
/sendkey down shift
/click left
/sendkey up shift
/mouseto bank silver
/click left
/delay 1
| -- Puts Copper in Bank
:Copper
/if $char(copper)=="0" /goto :Done
/mouseto copper
/sendkey down shift
/click left
/sendkey up shift
/mouseto bank copper
/click left
/delay 1
:Done
/click left 70 407
/delay 1
/if $char(plat,bank)!="0" {
/mouseto bank plat
/sendkey down shift
/click left
/sendkey up shift
/delay 1
/mouseto bank shared
/click left
}else
/delay 1
/cleanup
/return
well! Take care, hope someone can figure out whats going on! ATM it just crashes me to server select..not sure why!
Thanks
Draekz
