Here is another macro not by me and I haven't tried yet but I might as well submit it just in case someone needs its. This needs AC Tools of course and you need to do some image mapping, check my other post on how to do that

Enjoy

(!empty($user->lang['QUOTE'])) ? $user->lang['QUOTE'] : ucwords(strtolower(str_replace('_', ' ', 'QUOTE'))):
//---------------------------------------------------
//------ |doom|'s Terminal Slicing Macro ------
//------ For Slicing XP ------
//------ v2.1 ------
//---------------------------------------------------
//---------------------------------------------------
//------ Section To Edit ------
//---------------------------------------------------
constants
ok = 551, 457 //Coordinates of OK button
pos = 442, 345// Coordinates of Positive Wire
neg = 457, 367// Coordinates of Negative Wire
c = 462, 384// Coordinates of Clamp Option
ploc = 369, 293 // Coordinates of Final Period
end
//---------------------------------------------------
//------ END EDIT SECTON ------
//------ Do NOT Edit Below This Line ------
//---------------------------------------------------
SetActiveWindow SwgClient
Procedure Failsafe
Keys /target Mission Terminal
Delay 5 sec
Keys {RETURN}
End
Procedure Start
Keys `
Delay 5 sec
Keys 3
End
Procedure Positive
MousePos $pos
DoubleClick
Delay 10 sec
MousePos $ok
DoubleClick
Delay 20 sec
End
Procedure Negative
MousePos $neg
DoubleClick
Delay 10 sec
MousePos $ok
DoubleClick
Delay 20 sec
End
Procedure Clamp
MousePos $c
DoubleClick
Delay 10 sec
MousePos $ok
DoubleClick
Delay 20 sec
End
Procedure Slice
Call Start
Call Clamp
If {RGBRed} = 255 // Red Color from test log
// Do these commands if true
If {RGBGreen} = 255 // Green Color from test log
// Do these commands if true
If {RGBBlue} = 255 // Blue Color from test log
Call Negative
Call Positive
Else
End
Else
End
Else
Call Positive
Call Negative
End
Delay 120 sec
End
Loop 100
Call Failsafe
Call Slice
End