lock: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - "<code>([^<]*)\[\[([a-zA-Z][a-zA-Z0-9_]+)\]\]([^<]*) *<\/code>" to "<code>$1$2$3</code>")
m (Text replacement - "\{\{Feature *\| *Informative *\| ([^↵]+) *\}\}" to "{{Feature|informative|$1}}")
 
(8 intermediate revisions by the same user not shown)
Line 30: Line 30:
|descr= Lock vehicle (disable mounting / dismounting) for player.
|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]]).
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.}}
{{Feature|informative|Alternative syntax is similar to [[setVehicleLock]] but with numbers.}}


|s1= vehicleName [[lock]] locked
|s1= vehicleName [[lock]] locked
Line 46: Line 46:
|p21= vehicleName: [[Object]]
|p21= vehicleName: [[Object]]


|p22= lockstate: [[Number]] - Can be one of the following:<br>
|p22= lockstate: [[Number]] - can be one of the following:<br>
0 - Unlocked<br>
0 - Unlocked<br>
1 - Default (player subordinate cannot enter until his leader says so)<br>
1 - Default (player subordinate cannot enter until his leader says so)<br>
Line 54: Line 54:
|r2= [[Nothing]]
|r2= [[Nothing]]


|x1= <code>_jeepOne lock true;</code>
|x1= <sqf>_jeepOne lock true;</sqf>


|x2= <code>heli lock true;
|x2= <sqf>
[[locked]] heli; // 2
heli lock true;
locked heli; // 2


heli [[lock]] [[false]];
heli lock false;
[[locked]] heli; // 0
locked heli; // 0


heli [[lock]] 1;
heli lock 1;
locked heli; // 1</code>
locked heli; // 1
</sqf>


|seealso= [[locked]] [[setVehicleLock]] [[lockDriver]] [[lockCargo]] [[lockTurret]]
|seealso= [[locked]] [[setVehicleLock]] [[lockDriver]] [[lockCargo]] [[lockTurret]]
}}
}}


<dl class="command_description">
{{Note
|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.
}}


<dt><dt>
{{Note
<dd class="notedate">Posted on January 9, 2010 - 22:50</dd>
|user= cali
<dt class="note">[[User:Tankbuster|Tankbuster]]</dt>
|timestamp= 20100922045600
<dd class="note">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.
|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.
<dt><dt>
}}
<dd class="notedate">Posted on September 22, 2010</dd>
<dt class="note">[[User:Grimm|Grimm]]</dt>
<dd class="note">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.
 
</dl>

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.