I think, nobody's answering, because it's not really
clear, what you want:
is it:
displaying different messages to different players in multiplayer?
or is it:
displaying different custom actions to different players in multiplayer?
And what i totally couldn't figure out yet:
how to make a 2/3 level radio net commands
You need to go a lil bit more into detail of what you wanna
do, and what you need.
I mean off course i got, that you want
different custom actions appear for different playersbut upon your question that's not really easy for others
to figure out
*hint*
condition: unitname == player
while unitname represents the name you have given the unit
in editor.
would be the right condition to check, wether the unit
is local or not.
In a script you could have as first lines:
?(soldier1 == player): goto "player1"
?(soldier2 == player): goto "player2"
#player1
blablabla...add_custom_actions_for_player1_etc.....
exit
#player2
blablabla...add_custom_actions_for_player2_etc.....
exit
~S~ CD