setNameSound: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - "<!-- Note Section [A-Z]+ --> " to "")
m (Some wiki formatting)
 
(20 intermediate revisions by the same user not shown)
Line 1: Line 1:
{{RV|type=command
{{RV|type=command


| arma3
|game1= arma3
 
|version1= 1.02
|1.02


|arg= global
|arg= global
Line 11: Line 10:
|gr1= Unit Identity
|gr1= Unit Identity


| Sets the [[nameSound]] of a person. By default, when giving orders, the units are addressed by their number. When nameSound is set, it will be used instead to address the unit. For example: "Two, hold fire!", one can have: "Miller, hold fire!".
|descr= Sets the [[nameSound]] of a person. By default, when giving orders, the units are addressed by their number.
When nameSound is set, it will be used instead to address the unit. For example instead of "Two, hold fire!", one can have "Miller, hold fire!".


{{Feature | Informative | See [[Arma 3 CfgIdentities#NameSounds|CfgIdentities - NameSounds]] for common values.<br>
{{Feature|informative|
Note that any word from <tt>[[configfile]] >> "RadioProtocolENG" >> "Words"</tt> is accepted (e.g "veh_infantry_Sniper_s").}}
See {{Link|Arma 3: CfgIdentities#NameSounds}} for common values.<br>
Note that any word from <sqf inline>configFile >> "RadioProtocolENG" >> "Words"</sqf> is accepted (e.g {{hl|"veh_infantry_Sniper_s"}}).
}}


| person [[setNameSound]] name
|s1= person [[setNameSound]] name


|p1= person: [[Object]]
|p1= person: [[Object]]
Line 22: Line 24:
|p2= name: [[String]]
|p2= name: [[String]]


| [[Nothing]]
|r1= [[Nothing]]


|x1= <code>unit1 [[setNameSound]] "dixon";</code>
|x1= <sqf>unit1 setNameSound "dixon";</sqf>
|x2= <code>unit1 [[setNameSound]] ""; // will reset to default behaviour</code>
|x3= <code>_name = "Masood";
unit1 [[setNameSound]] _name;
unit1 [[setName]] _name;</code>


|seealso= [[nameSound]], [[name]], [[setName]], [[setIdentity]]
|x2= <sqf>unit1 setNameSound ""; // will reset to default behaviour</sqf>
}}


<dl class='command_description'>
|x3= <sqf>
<dt><dt>
_name = "Masood";
<dd class="notedate">Posted on December 22, 2013 - 19:08 (UTC)</dd>
unit1 setNameSound _name;
<dt class="note">[[User:Lou Montana|Lou Montana]]</dt>
unit1 setName _name;
<dd class="note">setting an incorrect value like "0" or "randomString" will remove the callsign (" ''/* 2, */'' fall back")
</sqf>


</dl>
|seealso= [[nameSound]] [[name]] [[setName]] [[setIdentity]]
}}




{{GameCategory|arma3|New Scripting Commands}}
{{Note
{{GameCategory|arma3|Scripting Commands}}
|user= Lou Montana
[[Category:Scripting Commands|{{uc:{{PAGENAME}}}}]]
|timestamp= 201312221908
|text= setting an incorrect value like "0" or "randomString" will remove the callsign (" ''/* 2, */'' fall back")
}}

Latest revision as of 11:01, 19 April 2024

Hover & click on the images for description

Description

Description:
Sets the nameSound of a person. By default, when giving orders, the units are addressed by their number. When nameSound is set, it will be used instead to address the unit. For example instead of "Two, hold fire!", one can have "Miller, hold fire!".
See Arma 3: CfgIdentities - NameSounds for common values.
Note that any word from configFile >> "RadioProtocolENG" >> "Words" is accepted (e.g "veh_infantry_Sniper_s").
Groups:
Unit Identity

Syntax

Syntax:
person setNameSound name
Parameters:
person: Object
name: String
Return Value:
Nothing

Examples

Example 1:
unit1 setNameSound "dixon";
Example 2:
unit1 setNameSound ""; // will reset to default behaviour
Example 3:
_name = "Masood"; unit1 setNameSound _name; unit1 setName _name;

Additional Information

See also:
nameSound name setName setIdentity

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


Lou Montana - c
Posted on Dec 22, 2013 - 19:08 (UTC)
setting an incorrect value like "0" or "randomString" will remove the callsign (" /* 2, */ fall back")