Jump to content
Sign in to follow this  
--esp4all-slayer--

Radio commands

Recommended Posts

Question:

How is it possible, to let players of east and west use the same radiocommands (e.g. ALPHA) for 2 different actions?

I tried giving them the condition:

"this and side player == west"

but it didn't work.

I just want east and west be able to use radio alpha while both have perform different actions!

I need that feature for a buy mission, where you can buy things by using radiocommands.

Please help me!

SLAYER

Share this post


Link to post
Share on other sites

I also don't know the answer for your question, but I also have a (Idon'tknowwhat'sthisnamebutit'sintheforumandterearealotofaboutthis) question about this, and if you look at the "Some questions about the editing", which is Vaszilij Zajcev's, you might take answer this queston.

P.E:My friend is also like Slayer. I think rock is crazy. (I am a RAP-per!wink.gif

Share this post


Link to post
Share on other sites

Slayer,

your condition seems right to me, but what text do you use for the RadioAlpha.

For you task try the following:

Create the initialization script "init.sqs" (will be automatically called at mission start up) and write the following in it:

?(Side player) == west: 1 SetRadioMsg "Text for west action"

?(Side player) == east: 1 SetRadioMsg "Text for east action"

This will define the text appearing for Radio Alpha depending on the side

Make two triggers (activated by Radio Alpha) with your conditions:

this AND (Side player == west)

this AND (Side player == east)

and make them activate whatever you want. Don't put anything in the Text field as this would overwrite the text we defined in the init.sqs.

Hope this helps (and works),

Spinor

Share this post


Link to post
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
Sign in to follow this  

×