SWG Bots - AFK Bot - Combat Macro for ALL Proffessions
Posted: July 22nd, 2007, 9:15 am
Ok, I made this for use on my Level 90 Medic, to get Junk loot for my Tailor to Reverse Engineer. But im sure you could adapt it for grinding by changing the times etc..
Basically what the macro does is, rotate your character, Makes your character shoot automatically! and Automatically Loots for you.
Note: You could add a third in-game Macro if you like to pull off a couple of your special moves.
Here it is:
Setup:
1. Go to Options> Keymap> Target Tab
Find: "Toggle Repeat Auto Attack"
I have bound this to the key "f"
2. Under Options -> Keymap there should be a tick at "disable Strafe Turn with keys"
-----------------------------------
Create the following Macros ingame:
Macro: Loot
/loot all;
/pause 0.2;
/macro loot;
Macro: CycleTargets
/ui action cycleTargetOutward;
/pause 6; \\Change this to the time it takes you to kill your target mob
/macro CycleTargets;
Create the Following Script in Autoit v.3
Get it here: http://www.autoitscript.com/autoit3/downloads.php
Run All Macros
Advanced users: If you use this macro instead of the loot macro listed above, it may work better! But you must satrt the cylce macro and loot macro simultaenously. Experiement yourselves:
Macro:Loot
/tar corpse;
/loot all;
/pause 12;
/macro loot;
Basically what the macro does is, rotate your character, Makes your character shoot automatically! and Automatically Loots for you.
Note: You could add a third in-game Macro if you like to pull off a couple of your special moves.
Here it is:
Setup:
1. Go to Options> Keymap> Target Tab
Find: "Toggle Repeat Auto Attack"
I have bound this to the key "f"
2. Under Options -> Keymap there should be a tick at "disable Strafe Turn with keys"
-----------------------------------
Create the following Macros ingame:
Macro: Loot
/loot all;
/pause 0.2;
/macro loot;
Macro: CycleTargets
/ui action cycleTargetOutward;
/pause 6; \\Change this to the time it takes you to kill your target mob
/macro CycleTargets;
Create the Following Script in Autoit v.3
Get it here: http://www.autoitscript.com/autoit3/downloads.php
Code: Select all
;StarWarsGalaxies Junk Looter v1.0 by Xzi
MsgBox("48", "Auto Junk Loot Grind", 4)
Sleep("5000")
Sleep("10000")
$i = 0
Do
If WinActive( "Star Wars Galaxies", "" ) Then
Send("{f down}") ;Holds the f key down
Send("{f up}") ;Releases the f key
Sleep("2000")
Send("{d down}") ;Holds the d key down
Sleep("1000")
Send("{d up}") ;Releases the d key
Else
WinActivate( "Star Wars Galaxies", "")
EndIf
Until $i = 1Run All Macros
Advanced users: If you use this macro instead of the loot macro listed above, it may work better! But you must satrt the cylce macro and loot macro simultaenously. Experiement yourselves:
Macro:Loot
/tar corpse;
/loot all;
/pause 12;
/macro loot;