setPilotLight: Difference between revisions
Jump to navigation
Jump to search
Lou Montana (talk | contribs) m (Text replacement - " \| *(game[0-9]|version[0-9]|gr[0-9]|serverExec|mp|pr|descr|s[0-9]|p[0-9]{1,3}|r[0-9]|x1?[0-9]|seealso) *= +" to " |$1= ") |
Lou Montana (talk | contribs) m (Text replacement - "<sqf>([^↵][^<]*↵[^<]*)<\/sqf>" to "<sqf> $1 </sqf>") |
||
(17 intermediate revisions by the same user not shown) | |||
Line 10: | Line 10: | ||
|eff= global | |eff= global | ||
|descr= Switches headlights of a vehicle on/off. Note that the vehicle has to be [[local]], for global variant use [[Arma 3 Actions]] "[[Arma_3_Actions#LightOn|LightOn]]"/"[[Arma_3_Actions#LightOff|LightOff]]" | |descr= Switches headlights of a vehicle on/off. Note that the vehicle has to be [[Multiplayer Scripting#Locality|local]], for global variant use [[Arma 3: Actions]] "[[Arma_3_Actions#LightOn|LightOn]]"/"[[Arma_3_Actions#LightOff|LightOff]]" | ||
|s1= vehicle [[setPilotLight]] set | |s1= vehicle [[setPilotLight]] set | ||
Line 20: | Line 20: | ||
|r1= [[Nothing]] | |r1= [[Nothing]] | ||
|x1= < | |x1= <sqf>car setPilotLight true;</sqf> | ||
|seealso= [[isLightOn]] | |seealso= [[isLightOn]] [[isCollisionLightOn]] [[setCollisionLight]] [[isIRLaserOn]] | ||
}} | }} | ||
Line 28: | Line 28: | ||
<dt></dt> | <dt></dt> | ||
<dd class="notedate">Posted on | <dd class="notedate">Posted on 2018-09-28 - 04:03 (UTC)</dd> | ||
<dt class="note">[[User:HazJ|HazJ]]</dt> | <dt class="note">[[User:HazJ|HazJ]]</dt> | ||
<dd class="note"> | <dd class="note"> | ||
This command will not work when using [[enableSimulation]] FALSE before this command is executed. However collision lights still do using [[setCollisionLight]]. | This command will not work when using [[enableSimulation]] FALSE before this command is executed. However collision lights still do using [[setCollisionLight]]. | ||
< | <sqf> | ||
this | // Workaround - Put in object init field | ||
this | this setPilotLight true; | ||
[this] | this setCollisionLight true; | ||
[this] spawn { | |||
(_this | sleep 0.001; | ||
(_this select 0) enableSimulation false; | |||
}; | }; | ||
</ | </sqf> | ||
</dd> | </dd> | ||
</dl> | </dl> |
Latest revision as of 19:42, 3 September 2024
Description
- Description:
- Switches headlights of a vehicle on/off. Note that the vehicle has to be local, for global variant use Arma 3: Actions "LightOn"/"LightOff"
- Groups:
- Lights
Syntax
- Syntax:
- vehicle setPilotLight set
- Parameters:
- vehicle: Object
- set: Boolean
- Return Value:
- Nothing
Examples
- Example 1:
Additional Information
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 2018-09-28 - 04:03 (UTC)
- HazJ
- This command will not work when using enableSimulation FALSE before this command is executed. However collision lights still do using setCollisionLight.