setVehicleVarName: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
(Undo revision 87650 by Ozdeadmeat (talk) Behaviour and example is already covered in description)
m (Some wiki formatting)
 
(53 intermediate revisions by 6 users not shown)
Line 1: Line 1:
{{Command|= Comments
{{RV|type=command
____________________________________________________________________________________________


| arma |= Game name
|game1= arma1
|version1= 1.00


|1.00|= Game version
|game2= arma2
|version2= 1.00


|arg= global |=  
|game3= arma2oa
|version3= 1.50


|eff= local |= Effects in MP
|game4= tkoh
____________________________________________________________________________________________
|version4= 1.00


| 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:
|game5= arma3
<code>[[hint]] [[str]] _offroad; //MyFerrari</code>
|version5= 0.50
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. [[vehicleVarName]] on the other hand is only string representation of the object. So if you want to refer to the actual object by its [[vehicleVarName]], an extra step needed to assign the object to a variable of the same name. For example to see and refer to offroad as myFerrari:
<code>_offroad [[setVehicleVarName]] "MyFerrari"; MyFerrari {{=}} _offroad;</code>
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. <br>
To reset [[vehicleVarName]] and [[str]] representation of the object to original form set [[vehicleVarName]] to an empty string:
<code>_offroad [[setVehicleVarName]] "";</code> |= Description
____________________________________________________________________________________________


| object''' setVehicleVarName''' name |= Syntax
|arg= global


|p1= object: [[Object]] |= Parameter 1
|eff= local


|p2= name: [[String]] |= Parameter 2
|gr1= Object Manipulation


| [[Nothing]] |= Return value
|descr= Sets string representation of an object to a custom string.<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.
 
In scripts an extra step is needed to achieve the same effect - see {{Link|#Example 1}}.
|x1= <code>[[player]] [[setVehicleVarName]] "aP";</code> |= Example 1
____________________________________________________________________________________________
| mp= Execute on every client |=
| [[vehicleVarName]]  |= See also


}}
{{Feature|arma3|This does not work with [[Arma 3: Simple Objects|Simple Objects]].}}
 
|s1= object [[setVehicleVarName]] name
 
|p1= object: [[Object]]
 
|p2= name: [[String]]
 
|r1= [[Nothing]]
 
|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"


<h3 style="display:none">Notes</h3>
isNil "MyOffroad"; // true - the MyOffroad variable is not set
<dl class="command_description">
MyOffroad = _playersCar; // now it is
<!-- Note Section BEGIN -->
publicVariable "MyOffroad"; // broadcasts it over the network
</sqf>


<!-- Note Section END -->
|x2= <sqf>_offroad setVehicleVarName ""; // Reset string representation to the default value</sqf>
</dl>


<h3 style="display:none">Bottom Section</h3>
|seealso= [[vehicleVarName]] [[BIS_fnc_objectVar]]
[[Category:Scripting Commands|SETVEHICLEVARNAME]]
}}
[[Category:Scripting Commands OFP Elite |SETVEHICLEVARNAME]]
[[Category:Scripting Commands ArmA|SETVEHICLEVARNAME]]
[[Category:VBS2_Command_Group:_Variables|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands ArmA2|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands Arma 3|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting_Commands_Take_On_Helicopters|{{uc:{{PAGENAME}}}}]]

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