It isn't exactly clear how you want to combine the colours. If you want to blend the colours, you might simply add them.
put 255,0,0 into myRed
put 0,0,255 into myBlue
put 0,10,100 into myGreen
repeat with x = 1 to 3
put min(item x of myRed + item x of myBlue + item x of myGreen,255) into \
item x of myNewColor
end repeat
The formula I'm using here doesn't make much sense. If you can more specific in your question, I'll be able to adjust my answer with a better formula.
You may also use weighted values:
put min(.333*item x of myRed + .333*item x of myBlue + .334*item \
x of myGreen,255) into item x of myNewColor
You can adjust the weights to make the blend appear more natural. (This example is with 3 colours, to demonstrate the weights).