So I found a script for executing right clicks:
#IfWinActive Shadowbane
~RButton::
CoordMode, Mouse, Relative
MouseGetPos, x, y
ControlClick, X%x% Y%y%, ahk_id %idMain%,, R
ControlClick, X%x% Y%y%, ahk_id %idClone%,, R
Return

works fine, if both my characters are on top of each other and the zoom/camera angles are near perfectly matched up.
But then you would not be able to zoom in and out "mouse wheel" or turn the camera angle up,down,left right. "My camera angle keys are w,a,s,d"
so I tried hot keying my angle keys but got very chopping and sometimes no results at all. I tried various scripts such as:
~a::
#IfWinActive, Shadowbane
{
ControlSend,,{a down}{a up}, ahk_id %idMain%
ControlSend,,{a down}{a up}, ahk_id %idClone%
}
Return
I tried w/ & w/out the "~" |& "ControlSend,, a," & the {down/up} script posted above, but no luck. I'm going to call it a night for now & try again in the morning. Any feedback would be greatly appreciated :D