BIS fnc switchLamp: Difference between revisions
Jump to navigation
Jump to search
Lou Montana (talk | contribs) m (Text replacement - "\{\{ *cc*\| *([^}]+) *\}\}" to "// $1") |
Lou Montana (talk | contribs) m (Some wiki formatting) |
||
Line 18: | Line 18: | ||
|p2= state: [[Boolean]] - true to turn lamp on, false to turn it off | |p2= state: [[Boolean]] - true to turn lamp on, false to turn it off | ||
|x1= < | |x1= <sqf> | ||
// switches all lamps off in a radius of 200m | |||
{ [_x, | private _lampsIn200m = nearestObjects [player, ["Lamps_base_F", "PowerLines_base_F", "PowerLines_Small_base_F"], 200]; | ||
{ [_x, false] call BIS_fnc_switchLamp; } forEach _lampsIn200m; | |||
</sqf> | |||
|x2= < | |x2= <sqf> | ||
aLamp | // simulates a damaged street light | ||
[[ | aLamp spawn { | ||
params [ | |||
["_lamp", objNull, [objNull]] | |||
]; | |||
while { player distance _lamp < 200 } do | |||
{ | { | ||
[_lamp, | [_lamp, selectRandom [true, false]] call BIS_fnc_switchLamp; | ||
sleep 0.1 + random 0.5; | |||
}; | }; | ||
};</ | }; | ||
</sqf> | |||
|seealso= [[switchLight]] | |seealso= [[switchLight]] | ||
}} | }} |
Revision as of 12:45, 13 July 2022
Description
- Description:
- Switch streetlamp on/off.
- Execution:
- call
- Groups:
- Object Manipulation
Syntax
- Syntax:
- [object, state] call BIS_fnc_switchLamp
- Parameters:
- object: Object - Street Lamp
- state: Boolean - true to turn lamp on, false to turn it off
- Return Value:
- Nothing
Examples
- Example 1:
- Example 2:
Additional Information
- See also:
- switchLight
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