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...") |
|||
Line 89: | Line 89: | ||
<dt style="clear:both;font-weight:bold;position:absolute;padding:.3em;">See also:</dt> | <dt style="clear:both;font-weight:bold;position:absolute;padding:.3em;">See also:</dt> | ||
<dd style="width:90%;padding:.3em .3em .3em 7em;column-count:4;"> | <dd style="width:90%;padding:.3em .3em .3em 7em;column-count:4;"> | ||
<div style="display:block;">[[ | <div style="display:block;">[[restrictedVehicle]]</div> | ||
<div style="display:block;">[[repairRearmTrigger]]</div> | |||
<div style="display:block;">[[rallyPoint]]</div> | |||
<div style="display:block;">[[safeStart]]</div> | |||
<div style="display:block;">[[slingPrimary]]</div> | |||
<div style="display:block;">[[unitInvestigate]]</div> | |||
</dd> | </dd> | ||
Revision as of 09:14, 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