=BFP=Cheetah 0 Posted March 26, 2002 I made a mission where ya use your radio (0-0-1 etc) How can I make this radio commands only available for 1 soldier or is it impossible? plz tell me srry for bad english Share this post Link to post Share on other sites
Aculaud 0 Posted March 26, 2002 Generally, no one in OFP uses the radio function except you, the player. Do you just want it to refer to one soldier or something? Share this post Link to post Share on other sites
Chris Death 0 Posted March 27, 2002 errm Aculaud, he's talkin 'bout multiplayer Cheetah: i haven't tried out, disabling radio-messages, but it has to do with the setRadioMsg command. I think, you may use the init.sqs to disable it for everyone, and enable it for an individual unit later. I found an example at OFPEC. You might have to work around a lil bit with it. This example was given, to disable 0-0-2 for player 1 and to disable 0-0-1 for player 2; ? (player == Player_1) : 2 setRadioMsg "NULL" ? (player == Player_2) : 1 setRadioMsg "NULL" hope this helps a bit Share this post Link to post Share on other sites
=BFP=Cheetah 0 Posted March 27, 2002 thanks for the info, I'll try it It works!! Share this post Link to post Share on other sites