2016-03-01 21:16:14 +00:00
|
|
|
/*
|
|
|
|
* Author: esteldunedain
|
|
|
|
* Make the player check the temperature of his spare barrels
|
|
|
|
*
|
|
|
|
* Arguments:
|
|
|
|
* 0: Player <OBJECT>
|
|
|
|
*
|
|
|
|
* Return Value:
|
|
|
|
* None
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* Public: No
|
|
|
|
*/
|
|
|
|
#include "script_component.hpp"
|
|
|
|
|
|
|
|
params ["_player"];
|
|
|
|
|
|
|
|
// Check canInteractWith:
|
|
|
|
if (!([_player, objNull, ["isNotInside", "isNotSitting"]] call EFUNC(common,canInteractWith))) exitWith {};
|
|
|
|
|
|
|
|
// Make the unit go kneeling
|
2016-03-01 22:25:45 +00:00
|
|
|
[_player] call EFUNC(common,goKneeling);
|
2016-03-01 21:16:14 +00:00
|
|
|
|
|
|
|
// Spawn a progress bar
|
|
|
|
[
|
|
|
|
5.0,
|
|
|
|
[_player],
|
|
|
|
{
|
2016-03-01 22:25:45 +00:00
|
|
|
params ["_args", "_elapsedTime", "_totalTime", "_errorCode"];
|
|
|
|
_args params ["_player"];
|
2016-03-01 21:16:14 +00:00
|
|
|
// Time has enlapsed, ask the server to send the hint
|
2016-06-24 13:45:13 +00:00
|
|
|
[QGVAR(sendSpareBarrelTemperatureHint), [_player, _player]] call CBA_fnc_serverEvent;
|
2016-03-01 21:16:14 +00:00
|
|
|
},
|
|
|
|
{},
|
|
|
|
(localize LSTRING(CheckingSpareBarrelsTemperatures)),
|
|
|
|
{true},
|
|
|
|
["isNotInside", "isNotSitting"]
|
|
|
|
] call EFUNC(common,progressBar);
|