Code: Select all
|SukMage's Failed Attempt to gain Sol Ro Temple Faction June 11, 2004
|Based heavily on Casino Plat-waster by Groo Apr 29, 2004
Sub Main
/declare i int
:Loop
/for i 0 to 3
/call PickupGold
/call GiveGold ${i}
/next i
/call ClickTrade
/call ClearCursor
}
/delay 1s
/goto :Loop
/return
Sub GiveGold(i)
/if (${i}>0) {
/notify GiveWnd GVW_MyItemSlot${i} leftmouseup
} else {
/click left target
:Loop
/delay 1s
/if (!${Window[GiveWnd].Open}) /goto :Loop
}
/delay 3s
/return
Sub PickupGold
:Loop
/if (!${Cursor.ID}) {
/windowstate InventoryWindow open
/notify InventoryWindow IW_Money1 leftmouseup
[color=red]|insert command to clear the quantity window and change value to 30 [/color]
/notify enter
}
/delay 1s
/return
Sub ClickTrade
/notify GiveWnd GVW_Give_Button leftmouseup
/delay 1s
/return
Sub ClearCursor
:Loop
/if (!${Cursor.ID}) /return
/autoinv
/delay 1s
/doevents
/goto :Loop
/return
