2015-01-11 16:42:31 +00:00
|
|
|
/*
|
2015-03-15 21:40:47 +00:00
|
|
|
* Author: Hope Johnson and commy2
|
|
|
|
* Takes out earplugs.
|
2015-01-11 16:42:31 +00:00
|
|
|
*
|
|
|
|
* Arguments:
|
2015-03-15 21:40:47 +00:00
|
|
|
* 0:Unit (player) <OBJECT>
|
2015-01-11 16:42:31 +00:00
|
|
|
*
|
|
|
|
* Return Value:
|
2015-03-15 21:40:47 +00:00
|
|
|
* None
|
|
|
|
*
|
|
|
|
* Example:
|
|
|
|
* [ace_player] call ace_hearing_fnc_removeEarplugs
|
|
|
|
*
|
|
|
|
* Public: No
|
2015-01-11 16:42:31 +00:00
|
|
|
*/
|
2015-01-14 01:41:53 +00:00
|
|
|
#include "script_component.hpp"
|
2015-01-11 16:42:31 +00:00
|
|
|
|
2015-03-15 21:40:47 +00:00
|
|
|
PARAMS_1(_player);
|
2015-01-11 16:42:31 +00:00
|
|
|
|
2015-03-16 15:56:05 +00:00
|
|
|
if !(_player canAdd "ACE_EarPlugs") exitWith { // inventory full
|
2015-03-15 21:40:47 +00:00
|
|
|
[localize "STR_ACE_Hearing_Inventory_Full"] call EFUNC(common,displayTextStructured);
|
2015-01-11 16:42:31 +00:00
|
|
|
};
|
|
|
|
|
2015-03-16 15:56:05 +00:00
|
|
|
// Plugs already in and removing them.
|
|
|
|
_player addItem "ACE_EarPlugs";
|
2015-01-11 16:42:31 +00:00
|
|
|
|
2015-01-13 04:17:52 +00:00
|
|
|
_player setVariable ["ACE_hasEarPlugsIn", false, true];
|
2015-01-11 16:42:31 +00:00
|
|
|
|
2015-03-16 15:56:05 +00:00
|
|
|
[localize "STR_ACE_Hearing_EarPlugs_Are_Off"] call EFUNC(common,displayTextStructured);
|