mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
16 lines
295 B
Plaintext
16 lines
295 B
Plaintext
/*
|
|
* Author: BaerMitUmlaut
|
|
* Sets the total pain level of a unit.
|
|
*
|
|
* Arguments:
|
|
* 0: The Unit <OBJECT>
|
|
* 1: Pain level (0..1) <NUMBER>
|
|
*
|
|
* Return Value:
|
|
* None
|
|
*/
|
|
#include "script_component.hpp"
|
|
params ["_unit", "_pain"];
|
|
|
|
_unit setVariable [QGVAR(pain), 0 max _pain min 1];
|