mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
26 lines
494 B
Plaintext
26 lines
494 B
Plaintext
/*
|
|
* Author: Garth 'L-H' de Wet
|
|
* Turns 0-1 damage of explosion Event into a rating system of 0-3
|
|
*
|
|
* Arguments:
|
|
* 0: The amount of damage <NUMBER>
|
|
*
|
|
* Return Value:
|
|
* The rating [0-3] <NUMBER>
|
|
*
|
|
* Example:
|
|
* _rating = 0.05 call ace_goggles_fnc_getExplosionIndex;
|
|
*
|
|
* Public: No
|
|
*/
|
|
private ["_effectIndex"];
|
|
|
|
_effectIndex = switch true do {
|
|
case (_this <= 0.04): {0};
|
|
case (_this <= 0.06): {1};
|
|
case (_this <= 0.09): {2};
|
|
default {3};
|
|
};
|
|
|
|
_effectIndex
|