ACE3/addons/overheating/functions/fnc_setWeaponTemperature.sqf
Drofseh 79c0510056
Overheating - Fix set temperature functions (#8770)
* Fix set temperature functions

* fix example
2022-01-12 12:41:50 -06:00

25 lines
480 B
Plaintext

#include "script_component.hpp"
/*
* Author: drofseh
* Set weapon to specific temperature.
*
* Arguments:
* 0: Unit <OBJECT>
* 1: Weapon <STRING>
* 2: Temperature <NUMBER>
*
* Return Value:
* None
*
* Example:
* [player, currentWeapon player, 123] call ace_overheating_fnc_setWeaponTemperature
*
* Public: Yes
*/
params ["_unit", "_weapon", "_temp"];
private _weaponTempVarName = format [QGVAR(%1_temp), _weapon];
_unit setVariable [_weaponTempVarName, _temp];