Car Radio

ispan55

Member
whether it is possible to realize it in game?
I came across on Addon.
Addon to play music from the game or custom music while driving any vehicle.
70759b79c7dc3cb3db2dd043755a84ed.gif

http://www.armaholic.com/page.php?id=6688
 
Too late to bump this? Im a new server owner and admin looking to put in a few fun addons, streaming internet radio is something I am interested in.
 
is it possible to add Internet radio station in the playlist?

No. Arma2 does not grant the option to communicate with the Internet.

Plyz help! The antihack (infestar.de) block the menu! what need to type in filter?

Open AH.sqf and find:

PHP:
if ((isNull (findDisplay 106)) && (isNull (findDisplay 41144)) && (isNull (findDisplay 0))
                && (isNull (findDisplay 65431)) && (isNull (findDisplay 65432)) && (isNull (findDisplay 65433)) && (isNull (findDisplay 65434))
                && (isNull (findDisplay 65440)) && (isNull (findDisplay 65441)) && (isNull (findDisplay 65442))) then
                {
                    closeDialog 0;
                };
                sleep 0.5;

Change to:

PHP:
if ((isNull (findDisplay 106)) && (isNull (findDisplay 41144))
                && (isNull (findDisplay 65431)) && (isNull (findDisplay 65432)) && (isNull (findDisplay 65433)) && (isNull (findDisplay 65434))
                && (isNull (findDisplay 65440)) && (isNull (findDisplay 65441)) && (isNull (findDisplay 65442))) then
                {
                    closeDialog 0;
                };
                sleep 0.5;
 
Thank you for responding so quickly!
i have this in my antihack
Code:
sleep 0.01;
         if ((isNull (findDisplay 106)) && (isNull (findDisplay -1)) && (isNull (findDisplay 41144))
         && (isNull (findDisplay 6902)) && (isNull (findDisplay 6903)) && (isNull (findDisplay 6904)) && (isNull (findDisplay 6905))
         && (isNull (findDisplay 65431)) && (isNull (findDisplay 65432)) && (isNull (findDisplay 65433)) && (isNull (findDisplay 65434))
         && (isNull (findDisplay 65440)) && (isNull (findDisplay 65441)) && (isNull (findDisplay 65442)) && !(ctrlEnabled 1900)) then
         {closeDialog 0;}else{if (!isNull (findDisplay 106) and !(ctrlEnabled 6902) and (lbSize ((findDisplay 106) displayCtrl 105) < 1)) then {closeDialog 0;};};

sory for my bad English, what i need to do?
 
Last edited:
Thank you for responding so quickly!
i have this in my antihack

sleep 0.01;
if ((isNull (findDisplay 106)) && (isNull (findDisplay -1)) && (isNull (findDisplay 41144))
&& (isNull (findDisplay 6902)) && (isNull (findDisplay 6903)) && (isNull (findDisplay 6904)) && (isNull (findDisplay 6905))
&& (isNull (findDisplay 65431)) && (isNull (findDisplay 65432)) && (isNull (findDisplay 65433)) && (isNull (findDisplay 65434))
&& (isNull (findDisplay 65440)) && (isNull (findDisplay 65441)) && (isNull (findDisplay 65442)) && !(ctrlEnabled 1900)) then
{closeDialog 0;}else{if (!isNull (findDisplay 106) and !(ctrlEnabled 6902) and (lbSize ((findDisplay 106) displayCtrl 105) < 1)) then {closeDialog 0;};};


sory for my bad English, what i need to do?

First: Use [code-][/code-]

And second:

Change that to:

Code:
sleep 0.01;
         if ((isNull (findDisplay 106)) && (isNull (findDisplay 41144))
         && (isNull (findDisplay 6902)) && (isNull (findDisplay 6903)) && (isNull (findDisplay 6904)) && (isNull (findDisplay 6905))
         && (isNull (findDisplay 65431)) && (isNull (findDisplay 65432)) && (isNull (findDisplay 65433)) && (isNull (findDisplay 65434))
         && (isNull (findDisplay 65440)) && (isNull (findDisplay 65441)) && (isNull (findDisplay 65442)) && !(ctrlEnabled 1900)) then
         {closeDialog 0;}else{if (!isNull (findDisplay 106) and !(ctrlEnabled 6902) and (lbSize ((findDisplay 106) displayCtrl 105) < 1)) then {closeDialog 0;};};
 
Code:
                if ((isNull (findDisplay 106)) && (isNull (findDisplay -1)) && (isNull (findDisplay 41144))
                && (isNull (findDisplay 6902)) && (isNull (findDisplay 6903)) && (isNull (findDisplay 6904)) && (isNull (findDisplay 6905))
                && (isNull (findDisplay 65431)) && (isNull (findDisplay 65432)) && (isNull (findDisplay 65433)) && (isNull (findDisplay 65434))
                && (isNull (findDisplay 65440)) && (isNull (findDisplay 65441)) && (isNull (findDisplay 65442)) && !(ctrlEnabled 1900)) then
                {closeDialog 0;}else{if (!isNull (findDisplay 106) and !(ctrlEnabled 6902) and (lbSize ((findDisplay 106) displayCtrl 105) < 1)) then {closeDialog 0;};};
 
Last edited:
Back
Top