Difference between revisions of "Tracers"
Jump to navigation
Jump to search
(Created page with "<div style="padding:0.33em 2em;font-size:1.2em;font-weight:bold;display:block; border-bottom: #25A1A1 solid 1px; background-color:#E0FFFF;color:#25A1A1">Description</div> <dl...") |
(No difference)
|
Revision as of 09:07, 16 June 2021
Description
- Description:
This function adds tracers and/or flashlights to specified units. It must be run serverside (eg. from init.sqf).
- Execution:
call
- Groups:
Gameplay Utility Functions: Eric's Mission Framework
Syntax
- Syntax:
[unit, zeusSpawned, randomModel, flashlight, players] call EMF_fnc_tracers
- Parameters:
Unit: [Default: allUnits]
- Side - Side to apply to.
- Array - Units to apply to.
- String - role to apply to.
zeusSpawned: Boolean - Apply to units spawned in zeus? [Default: false]
randomModel: Boolean - use random magazine model or attempt to find one of the same kind. [Default: false]
flashlight: Boolean - Add flashlight to unit. [Default: true]
players: Boolean - Affect player units. [Default: false]
- Return Value:
None
Examples
- Example 1:
// Applies to all opfor units
[east] call EMF_fnc_tracers;- Example 2:
// Apply to all units and zeus spawned units but don't add flashlight
[allUnits, true, false, false] call EMF_fnc_tracers;
Additional Information
- See also:
Notes