Thought Id post this cause I thought someone would find it useful.
This macro is a ingame aid for moving Items. It makes things less Teedious.
| CODE |
Constants M_Loop = 0 P_Num = 5 Pack_Store = 0 End While 1 = 1 Delay 2 sec ProcessMessages //While in game Type /actcmd move 5 (or how ever many) End Procedure Move on actcmd move SetConst M_Loop = {actcmdparam} Loop $M_Loop mousepos $R1C1 | 300 If $P_Num = 5 SetConst Pack_Store = $Container5 Else If $P_Num = 6 SetConst Pack_Store = $Container6 Else If $P_Num = 7 SetConst Pack_Store = $Container7 ///change the Pack #s to your storage End End End Dragto $Pack_Store WaitforCursor Inc $P_Num If $P_Num = 8 SetConst P_Num = 5 End End End |