
This commit introduces a new "defend" task type. The following changes were made: - Added `defend` and `defendModule` to `XEH_PREP.hpp` for pre-processing. - Implemented `defend` case in `fnc_handler.sqf` to handle defend tasks. - Added `spawnEnemyWave` to `XEH_PREP.hpp` for pre-processing.
61 lines
2.7 KiB
Plaintext
61 lines
2.7 KiB
Plaintext
#include "..\script_component.hpp"
|
|
|
|
/*
|
|
* Author: IDSolutions
|
|
* Creates a defend task module
|
|
*
|
|
* Arguments:
|
|
* None
|
|
*
|
|
* Return Value:
|
|
* None
|
|
*
|
|
* Example:
|
|
* call forge_client_task_fnc_defendModule;
|
|
*
|
|
* Public: No
|
|
*/
|
|
|
|
// Module category
|
|
private _category = "Forge Tasks";
|
|
private _subCategory = "Defense Tasks";
|
|
|
|
// Create the module
|
|
private _module = createDialog "RscDisplayAttributes";
|
|
_module setVariable ["category", _category];
|
|
_module setVariable ["subcategory", _subCategory];
|
|
_module setVariable ["description", "Configure a defend task"];
|
|
|
|
// Add fields for task configuration
|
|
[_module, "Task ID", "taskID", "", true] call BIS_fnc_addAttribute;
|
|
[_module, "Defense Zone Marker", "defenseZone", "", true] call BIS_fnc_addAttribute;
|
|
[_module, "Defense Time (seconds)", "defendTime", "600", true] call BIS_fnc_addAttribute;
|
|
[_module, "Min BLUFOR in Zone", "minBlufor", "1", true] call BIS_fnc_addAttribute;
|
|
[_module, "Company Funds Reward", "companyFunds", "500000", true] call BIS_fnc_addAttribute;
|
|
[_module, "Rating Loss on Fail", "ratingFail", "-100", true] call BIS_fnc_addAttribute;
|
|
[_module, "Rating Gain on Success", "ratingSuccess", "400", true] call BIS_fnc_addAttribute;
|
|
[_module, "End Mission on Success", "endSuccess", "false", false] call BIS_fnc_addAttribute;
|
|
[_module, "End Mission on Fail", "endFail", "false", false] call BIS_fnc_addAttribute;
|
|
[_module, "Enemy Wave Count", "waveCount", "3", false] call BIS_fnc_addAttribute;
|
|
[_module, "Time Between Waves (seconds)", "waveCooldown", "300", false] call BIS_fnc_addAttribute;
|
|
|
|
// Add confirm button handler
|
|
_module setVariable ["onConfirm", {
|
|
params ["_module"];
|
|
private _taskID = _module getVariable ["taskID", ""];
|
|
private _defenseZone = _module getVariable ["defenseZone", ""];
|
|
private _defendTime = parseNumber (_module getVariable ["defendTime", "600"]);
|
|
private _companyFunds = parseNumber (_module getVariable ["companyFunds", "500000"]);
|
|
private _ratingFail = parseNumber (_module getVariable ["ratingFail", "-100"]);
|
|
private _ratingSuccess = parseNumber (_module getVariable ["ratingSuccess", "400"]);
|
|
private _endSuccess = _module getVariable ["endSuccess", "false"] == "true";
|
|
private _endFail = _module getVariable ["endFail", "false"] == "true";
|
|
private _waveCount = parseNumber (_module getVariable ["waveCount", "3"]);
|
|
private _waveCooldown = parseNumber (_module getVariable ["waveCooldown", "300"]);
|
|
private _minBlufor = parseNumber (_module getVariable ["minBlufor", "1"]);
|
|
|
|
// Create the task
|
|
private _params = [_taskID, _defenseZone, _defendTime, _companyFunds, _ratingFail, _ratingSuccess, _endSuccess, _endFail, _waveCount, _waveCooldown, _minBlufor];
|
|
["defend", _params] remoteExec ["forge_client_task_fnc_handler", 2, false];
|
|
}];
|