setVehicleVarName: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - "|game3= arma2oa |version3= 1.51 " to "|game3= arma2oa |version3= 1.50 ")
m (Some wiki formatting)
 
(20 intermediate revisions by the same user not shown)
Line 2: Line 2:


|game1= arma1
|game1= arma1
|version1= 1.00
|version1= 1.00


|game2= arma2
|game2= arma2
|version2= 1.00
|version2= 1.00


|game3= arma2oa
|game3= arma2oa
|version3= 1.50
|version3= 1.50


|game4= tkoh
|game4= tkoh
|version4= 1.00
|version4= 1.00


|game5= arma3
|game5= arma3
|version5= 0.50
|version5= 0.50


Line 27: Line 22:
|gr1= Object Manipulation
|gr1= Object Manipulation


|descr= Sets string representation of an object to a custom string. For example it is possible to return "MyFerrari" instead of default "ce06b00# 164274: offroad_01_unarmed_f.p3d" when querying object as string:
|descr= Sets string representation of an object to a custom string.<br>
<code>[[hint]] [[str]] _offroad; //MyFerrari</code><br>
When a vehicle is created and named in the editor, the name becomes both the variable containing the vehicle object and the string representation of the vehicle object.
When a vehicle is created and named in the editor, the name becomes both the variable containing the vehicle object and the string representation of the vehicle object. In scripts an extra step is needed to achieve the same effect. See [[{{PAGENAME}}#Example_1|Example 1]].
In scripts an extra step is needed to achieve the same effect - see {{Link|#Example 1}}.
 
{{Feature|arma3|This does not work with [[Arma 3: Simple Objects]].}}


|mp= In multiplayer environment [[setVehicleVarName]] has to be executed on every PC if you want the custom name to be known everywhere. If vehicle is created and named in the editor, the vehicle name will be known globally automatically.
{{Feature|arma3|This does not work with [[Arma 3: Simple Objects|Simple Objects]].}}


|s1= object '''setVehicleVarName''' name
|s1= object [[setVehicleVarName]] name


|p1= object: [[Object]]
|p1= object: [[Object]]
Line 42: Line 35:


|r1= [[Nothing]]
|r1= [[Nothing]]
 
|x1= <code>[[player]] [[setVehicleVarName]] "aP";{{cc|Change the string representation and assign it to a variable to work with}}
aP = [[player]];</code>


|x2= <code>_offroad [[setVehicleVarName]] ""; {{cc|Reset string representation to the default value}}</code>
|x1= <sqf>
private _playersCar = vehicle player;
systemChat str _playersCar; // displays e.g "ce06b00# 164274: offroad_01_unarmed_f.p3d"
 
_playersCar setVehicleVarName "MyOffroad";
systemChat str _playersCar; // displays "MyOffroad"
 
isNil "MyOffroad"; // true - the MyOffroad variable is not set
MyOffroad = _playersCar; // now it is
publicVariable "MyOffroad"; // broadcasts it over the network
</sqf>
 
|x2= <sqf>_offroad setVehicleVarName ""; // Reset string representation to the default value</sqf>


|seealso= [[vehicleVarName]] [[BIS_fnc_objectVar]]
|seealso= [[vehicleVarName]] [[BIS_fnc_objectVar]]
}}
}}

Latest revision as of 17:21, 20 March 2023

Hover & click on the images for description

Description

Description:
Sets string representation of an object to a custom string.
When a vehicle is created and named in the editor, the name becomes both the variable containing the vehicle object and the string representation of the vehicle object. In scripts an extra step is needed to achieve the same effect - see Example 1.
Arma 3
This does not work with Simple Objects.
Groups:
Object Manipulation

Syntax

Syntax:
object setVehicleVarName name
Parameters:
object: Object
name: String
Return Value:
Nothing

Examples

Example 1:
private _playersCar = vehicle player; systemChat str _playersCar; // displays e.g "ce06b00# 164274: offroad_01_unarmed_f.p3d" _playersCar setVehicleVarName "MyOffroad"; systemChat str _playersCar; // displays "MyOffroad" isNil "MyOffroad"; // true - the MyOffroad variable is not set MyOffroad = _playersCar; // now it is publicVariable "MyOffroad"; // broadcasts it over the network
Example 2:
_offroad setVehicleVarName ""; // Reset string representation to the default value

Additional Information

See also:
vehicleVarName BIS_fnc_objectVar

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