lock: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
No edit summary
m (Text replacement - "\{\{Feature *\| *Informative *\| ([^↵]+) *\}\}" to "{{Feature|informative|$1}}")
 
(70 intermediate revisions by 9 users not shown)
Line 1: Line 1:
{{Command|= Comments
{{RV|type=command
____________________________________________________________________________________________


| ofp |= Game name
|game1= ofp
|version1= 1.00


|1.00|= Game version
|game2= ofpe
|version2= 1.00


|arg= local |= Arguments in MP
|game3= arma1
|version3= 1.00


|eff= global |= Effects in MP
|game4= arma2
____________________________________________________________________________________________
|version4= 1.00


| Lock vehicle (disable mounting / dismounting) for player. |= Description
|game5= arma2oa
____________________________________________________________________________________________
|version5= 1.50


| vehicleName '''lock''' lock|= Syntax
|game6= tkoh
|version6= 1.00


|p1= vehicleName: [[Object]] |= Parameter 1
|game7= arma3
|p2= lock: [[Boolean]] |= Parameter 2
|version7= 0.50


| [[Nothing]] |= Return value
|arg= local
____________________________________________________________________________________________
 
|x1= <code>_jeepOne '''lock''' [[true]]</code> |= Example 1
____________________________________________________________________________________________


| [[locked]] |= See also
|eff= global


}}
|gr1= Object Manipulation
 
|descr= Lock vehicle (disable mounting / dismounting) for player.
This command will remove user get in/get out actions but will not stop player getting into or out of vehicle via script commands (e.g [[moveInCargo]]).
{{Feature|informative|Alternative syntax is similar to [[setVehicleLock]] but with numbers.}}
 
|s1= vehicleName [[lock]] locked
 
|p1= vehicleName: [[Object]]
 
|p2= locked: [[Boolean]] - [[true]] to lock, [[false]] to unlock
 
|r1= [[Nothing]]
 
|s2= vehicleName [[lock]] lockstate
 
|s2since= arma3 0.50
 
|p21= vehicleName: [[Object]]
 
|p22= lockstate: [[Number]] - can be one of the following:<br>
0 - Unlocked<br>
1 - Default (player subordinate cannot enter until his leader says so)<br>
2 - Locked<br>
3 - Locked for player
 
|r2= [[Nothing]]
 
|x1= <sqf>_jeepOne lock true;</sqf>
 
|x2= <sqf>
heli lock true;
locked heli; // 2
 
heli lock false;
locked heli; // 0


<h3 style="display:none">Notes</h3>
heli lock 1;
<dl class="command_description">
locked heli; // 1
<!-- Note Section BEGIN -->
</sqf>
--[[User:Tankbuster|Tankbuster]] 22:50, 9 January 2010 (CET) Lock prevents AI persons mounting or dismounting vehicles when ordered to do so and players are prevented from doing both too, but AI will dismount when a vehicle is damaged.


<!-- Note Section END -->
|seealso= [[locked]] [[setVehicleLock]] [[lockDriver]] [[lockCargo]] [[lockTurret]]
</dl>
}}
<dl class="command_description">
<!-- Note Section BEGIN -->
--[[Grimm]] 22 September 2010 (CET) If an AI group (eg Mechanized Infantry) has its vehicule locked with its crew in it, it will mount or dismount it anyway. But a player in this group won't be able to enter the vehicle.


<!-- Note Section END -->
{{Note
</dl>
|user= Tankbuster
|timestamp= 20100109224800
|text= Lock prevents AI persons mounting or dismounting vehicles when ordered to do so and players are prevented from doing both too, but AI will still dismount when a vehicle is damaged.
}}


<h3 style="display:none">Bottom Section</h3>
{{Note
[[Category:Scripting Commands|LOCK]]
|user= cali
[[Category:Scripting Commands OFP 1.96|LOCK]]
|timestamp= 20100922045600
[[Category:Scripting Commands OFP 1.46|LOCK]]
|text= If an AI group (e.g Mechanized Infantry) has its vehicle locked with its crew in it, it will mount or dismount it anyway. But a player in this group won't be able to enter the vehicle.
[[Category:Scripting Commands ArmA|LOCK]]
}}
[[Category:Command_Group:_Vehicle_Assignment|{{uc:{{PAGENAME}}}}]]
[[Category:Command_Group:_Object_Manipulation|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands ArmA2|{{uc:{{PAGENAME}}}}]]

Latest revision as of 19:11, 15 March 2024

Hover & click on the images for description

Description

Description:
Lock vehicle (disable mounting / dismounting) for player. This command will remove user get in/get out actions but will not stop player getting into or out of vehicle via script commands (e.g moveInCargo).
Alternative syntax is similar to setVehicleLock but with numbers.
Groups:
Object Manipulation

Syntax

Syntax:
vehicleName lock locked
Parameters:
vehicleName: Object
locked: Boolean - true to lock, false to unlock
Return Value:
Nothing

Alternative Syntax

Syntax:
vehicleName lock lockstate
Parameters:
vehicleName: Object
lockstate: Number - can be one of the following:
0 - Unlocked
1 - Default (player subordinate cannot enter until his leader says so)
2 - Locked
3 - Locked for player
Return Value:
Nothing

Examples

Example 1:
_jeepOne lock true;
Example 2:
heli lock true; locked heli; // 2 heli lock false; locked heli; // 0 heli lock 1; locked heli; // 1

Additional Information

See also:
locked setVehicleLock 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
Tankbuster - c
Posted on Jan 09, 2010 - 22:48 (UTC)
Lock prevents AI persons mounting or dismounting vehicles when ordered to do so and players are prevented from doing both too, but AI will still dismount when a vehicle is damaged.
cali - c
Posted on Sep 22, 2010 - 04:56 (UTC)
If an AI group (e.g Mechanized Infantry) has its vehicle locked with its crew in it, it will mount or dismount it anyway. But a player in this group won't be able to enter the vehicle.