
All checks were successful
Build / Build (push) Successful in 28s
This commit refactors several client-side functions to improve code consistency and readability. - Standardizes function descriptions by removing redundant "Function: forge_client..." prefixes and "[Description]" sections, focusing on concise descriptions of the function's purpose. - Updates variable handling in arsenal functions to use GVAR and EGVARS for default values, improving consistency and reducing code duplication. - Removes the bank init function as it is no longer needed. - Adds a done variable to the preinit file.
32 lines
954 B
Plaintext
32 lines
954 B
Plaintext
#include "..\script_component.hpp"
|
|
|
|
/*
|
|
* Author: IDSolutions
|
|
* Handles fund transfers
|
|
*
|
|
* Arguments:
|
|
* 0: Condition <STRING> - The type of transfer to perform ("advance", "deduct", "advanceAll", "payday")
|
|
*
|
|
* Return Value:
|
|
* None
|
|
*
|
|
* Examples:
|
|
* ["advance"] call forge_client_admin_fnc_handleTransfer;
|
|
* ["payday"] call forge_client_admin_fnc_handleTransfer;
|
|
*
|
|
* Public: No - Called from admin dialog controls
|
|
*/
|
|
|
|
params [["_condition", "", [""]]];
|
|
|
|
private _dialog = findDisplay 202303;
|
|
private _list = _dialog displayCtrl 2023001;
|
|
private _index = lbCurSel _list;
|
|
private _uid = _list lbData _index;
|
|
private _amount = round (parseNumber (ctrlText 2023005));
|
|
|
|
if ({_condition in ["advance", "deduct"]} && ((isNil "_uid") || { _uid isEqualTo "" })) exitWith { hint "You did not select a player!"; };
|
|
|
|
["forge_server_admin_handleEvents", ["ADMIN::TRANSFER", [_condition, _amount, _uid]]] call CFUNC(serverEvent);
|
|
|
|
ctrlSetText [2023005, ""]; |