my setup wont be the same as yours, but here is what I did.
In F2 slot, i made a ingame macro with /im self (im-self)
in F3 slot, i made a custom macro with /ui action defaultButton (accept)
get a copy of ACTool
load your game in windowed mode (no border)1024x768
place the IM self macro in F2
place the accept macro in F3
start ACtool
watch the exp fly in
// This line is necessary to select the proper window
SetActiveWindow SwgClient
delay 5 sec
Procedure MacStart
MousePos 346, 23 // F2 - start ID
delay 250
LeftClick
delay 250
end
Procedure Commit
MousePos 667, 716 // Commit
delay 250
LeftClick
delay 250
end
Procedure grind
delay 1000
Call MacStart
delay 1000
MousePos 510, 126 // Eye and Nose
delay 1000
LeftClick
delay 1000
MousePos 452, 297 // Color Red
delay 1000
LeftClick
delay 1000
Call Commit
delay 1000
Call MacStart
delay 1000
MousePos 510, 126 //Eye/Nose
delay 1000
LeftClick
delay 1000
MousePos 512, 282 // Color Blue
delay 1000
LeftClick
delay 1000
Call Commit
end
While 1=1
If {ActiveWindow} = SWGClient
Call grind
Call grind
Call grind
Else
Delay 20 sec
SetActiveWindow SWGClient
End
End
|