setVehicleLock: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
No edit summary
m (Text replacement - "Killzone Kid" to "Killzone_Kid")
(66 intermediate revisions by 12 users not shown)
Line 1: Line 1:
{{Command|= Comments
{{RV|type=command
____________________________________________________________________________________________


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


|2.33|= Game version
|game2= arma1
____________________________________________________________________________________________
|version2= 1.00


| Set how vehicle is locked for player. Possible values: UNLOCKED, DEFAULT or LOCKED. |= Description
|game3= arma2
____________________________________________________________________________________________
|version3= 1.00


| vehicle '''setVehicleLock''' state |= Syntax
|game4= arma2oa
|version4= 1.50


|p1= vehicle: [[Object]] |= Parameter 1
|game5= tkoh
|version5= 1.00


|p2= state: [[String]] |= Parameter 2
|game6= arma3
|version6= 0.50


| [[Nothing]] |= Return value
|arg= local
____________________________________________________________________________________________
|eff= global
 
|x1= <pre>veh1 setVehicleLock "LOCKED"</pre> |= Example 1
____________________________________________________________________________________________


| |= See also
|gr1= Object Manipulation


|descr= Sets vehicle lock. Possible values:
<br>
* "UNLOCKED"
* "DEFAULT"
* "LOCKED"
* "LOCKEDPLAYER"
|s1= vehicleName [[setVehicleLock]] lockState
|p1= vehicleName: [[Object]]
|p2= lockState: [[String]]
|r1= [[Nothing]]
|x1= <sqf>_veh1 setVehicleLock "LOCKED";</sqf>
|seealso= [[lock]] [[locked]] [[lockDriver]] [[lockCargo]] [[lockTurret]]
}}
}}


<h3 style="display:none">Notes</h3>
 
<dl class="command_description">
<dl class="command_description">
<!-- Note Section BEGIN -->


<!-- Note Section END -->
<dt></dt>
<dd class="notedate">Posted on 2014-10-22 - 02:01 (UTC)</dd>
<dt class="note">[[User:AgentRevolution|AgentRevolution]]</dt>
<dd class="note">
In Arma 3:<br>
setVehicleLock "UNLOCKED" = same as "[[lock]] 0"<br>
setVehicleLock "DEFAULT" = same as "[[lock]] 1"<br>
setVehicleLock "LOCKED" = same as "[[lock]] 2"<br>
setVehicleLock "LOCKEDPLAYER" = same as "[[lock]] 3"
</dd>
 
<dt><dt>
<dd class="notedate">Posted on 2015-03-04 - 15:57 (UTC)</dd>
<dt class="note">[[User:Killzone_Kid|Killzone_Kid]]</dt>
<dd class="note">
DEFAULT lock is default vehicle lock when vehicle placed in editor. If player is in a group of AIs and not the leader, he will not be able to enter this vehicle as he will not have GetIn action for this vehicle.
</dd>
 
</dl>
</dl>
<h3 style="display:none">Bottom Section</h3>
[[Category:Scripting Commands|SETVEHICLELOCK]]
[[Category:Scripting Commands OFP Elite |SETVEHICLELOCK]]
[[Category:Scripting Commands ArmA|SETVEHICLELOCK]]

Revision as of 14:48, 12 March 2024

Hover & click on the images for description

Description

Description:
Sets vehicle lock. Possible values:
  • "UNLOCKED"
  • "DEFAULT"
  • "LOCKED"
  • "LOCKEDPLAYER"
Groups:
Object Manipulation

Syntax

Syntax:
vehicleName setVehicleLock lockState
Parameters:
vehicleName: Object
lockState: String
Return Value:
Nothing

Examples

Example 1:
_veh1 setVehicleLock "LOCKED";

Additional Information

See also:
lock locked lockDriver lockCargo lockTurret

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


Posted on 2014-10-22 - 02:01 (UTC)
AgentRevolution
In Arma 3:
setVehicleLock "UNLOCKED" = same as "lock 0"
setVehicleLock "DEFAULT" = same as "lock 1"
setVehicleLock "LOCKED" = same as "lock 2"
setVehicleLock "LOCKEDPLAYER" = same as "lock 3"
Posted on 2015-03-04 - 15:57 (UTC)
Killzone_Kid
DEFAULT lock is default vehicle lock when vehicle placed in editor. If player is in a group of AIs and not the leader, he will not be able to enter this vehicle as he will not have GetIn action for this vehicle.