2015-01-11 16:42:31 +00:00
|
|
|
/*
|
|
|
|
* Author: Hope Johnson
|
|
|
|
* Edited by commy2
|
|
|
|
*
|
|
|
|
* Puts in / takes out earplugs.
|
|
|
|
*
|
|
|
|
* Arguments:
|
|
|
|
* none
|
|
|
|
*
|
|
|
|
* Return Value:
|
|
|
|
* none
|
|
|
|
*/
|
2015-01-14 01:41:53 +00:00
|
|
|
#include "script_component.hpp"
|
2015-01-11 16:42:31 +00:00
|
|
|
|
|
|
|
private "_player";
|
|
|
|
|
|
|
|
_player = _this select 0;
|
|
|
|
|
|
|
|
// Buds in inventory, putting them in
|
2015-01-13 04:21:49 +00:00
|
|
|
_player removeItem "ACE_EarBuds";
|
2015-01-11 16:42:31 +00:00
|
|
|
|
2015-01-13 04:21:49 +00:00
|
|
|
_player setVariable ["ACE_hasEarPlugsIn", true, true];
|
2015-01-11 16:42:31 +00:00
|
|
|
|
2015-01-13 04:21:49 +00:00
|
|
|
[localize "STR_ACE_Hearing_Earbuds_Are_On"] call EFUNC(common,displayTextStructured);
|
2015-01-11 16:42:31 +00:00
|
|
|
|
|
|
|
/*// No Ear Buds in inventory, telling user
|
2015-01-13 04:21:49 +00:00
|
|
|
[localize "STR_ACE_Hearing_NoBuds"] call EFUNC(common,displayTextStructured);*/
|