showRadio: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - "<dd class="notedate">Posted on ([^<>]+) " to "<dd class="notedate">Posted on $1</dd> ")
m (Some wiki formatting)
 
(27 intermediate revisions by 3 users not shown)
Line 1: Line 1:
{{RV|type=command
{{RV|type=command


| ofp
|game1= ofp
|version1= 1.00


|1.00
|game2= ofpe
|version2= 1.00


|gr1= Interaction
|game3= arma1
|version3= 1.00


|gr2= Radio and Chat
|game4= arma2
|version4= 1.00


| Shows or hides the radio on the map screen, if enabled for the mission and you possess the item. (default [[true]])
|game5= arma2oa
|version5= 1.50


| '''showRadio''' show
|game6= tkoh
|version6= 1.00


|p1= show: [[Boolean]]
|game7= arma3
|version7= 0.50


| [[Nothing]]
|gr1= Interaction
 
|x1= <code>showRadio [[false]]</code>


| [[shownRadio]], [[showCompass]], [[showGPS]], [[showWatch]], [[showPad]]
|gr2= Radio and Chat
}}
 
|descr= Shows or hides the radio on the map screen, if enabled for the mission and you possess the item. (default [[true]]).
{{Feature|arma3|This command does nothing in {{arma3}}.}}
 
|s1= [[showRadio]] show


<dl class="command_description">
|p1= show: [[Boolean]]
<!-- Note Section BEGIN -->


<dd class="notedate">Posted on 16 Aug, 2009</dd>
|r1= [[Nothing]]
<dt class="note">[[User:Generalcarver|GeneralCarver]]<dd class="note">
In Arma 2, the radio is now an item in Arma 2. Class path is CfgWeapons->ItemRadio. Use the command addWeapon and removeWeapon to remove it from a unit's inventory. (example: player removeweapon "ItemRadio")


|x1= <sqf>showRadio false;</sqf>


<!-- Note Section END -->
|seealso= [[shownRadio]] [[showCompass]] [[showGPS]] [[showWatch]] [[showPad]]
</dl>
}}


[[Category:Scripting Commands|SHOWRADIO]]
{{Note
[[Category:Scripting Commands OFP 1.99|{{uc:{{PAGENAME}}}}]]
|user= GeneralCarver
[[Category:Scripting Commands OFP 1.96|SHOWRADIO]]
|timestamp= 20090816210200
[[Category:Scripting Commands OFP 1.46|SHOWRADIO]]
|text= The radio is now an item in {{arma2}}.
{{GameCategory|arma1|Scripting Commands}}
Class path is <sqf inline>"CfgWeapons" >> "ItemRadio"</sqf>.
{{GameCategory|arma2|Scripting Commands}}
Use the [[addWeapon]] and [[removeWeapon]] commands to add/remove it from a unit's inventory. e.g:
{{GameCategory|arma3|Scripting Commands}}
<sqf>player removeWeapon "ItemRadio";</sqf>
{{GameCategory|tkoh|Scripting Commands}}
}}

Latest revision as of 01:23, 18 February 2025

Hover & click on the images for description

Description

Description:
Shows or hides the radio on the map screen, if enabled for the mission and you possess the item. (default true).
Arma 3
This command does nothing in Arma 3.
Groups:
InteractionRadio and Chat

Syntax

Syntax:
showRadio show
Parameters:
show: Boolean
Return Value:
Nothing

Examples

Example 1:
showRadio false;

Additional Information

See also:
shownRadio showCompass showGPS showWatch showPad

Notes

Report bugs on the Feedback Tracker and/or discuss them on the Arma Discord or on the Forums.
Only post proven facts here! Add Note
GeneralCarver - c
Posted on Aug 16, 2009 - 21:02 (UTC)
The radio is now an item in Arma 2. Class path is "CfgWeapons" >> "ItemRadio". Use the addWeapon and removeWeapon commands to add/remove it from a unit's inventory. e.g:
player removeWeapon "ItemRadio";