Skip to content

Commit

Permalink
Removed Tagging system (#1209)
Browse files Browse the repository at this point in the history
  • Loading branch information
AndreasBrostrom authored Jul 17, 2024
1 parent b186778 commit ccfadf8
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 60 deletions.
1 change: 0 additions & 1 deletion cScripts/CfgFunctions.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ class cScripts {
class init {
file = "cScripts\functions\init";
class init_aceArsenal {};
class init_aceTagging {};
class init_aceItemReplace {};

class init_skillAdjustment {};
Expand Down
5 changes: 0 additions & 5 deletions cScripts/cScripts_preInit.sqf
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ INFO(if (is3DEN) then {"EDEN"} else {"preInit"}, "Initializing CBA Settings...")
// Check installed moduels
EGVAR(patches,usesACE) = isClass (configFile >> "CfgPatches" >> "ace_main");
EGVAR(patches,usesACEArsenal) = isClass (configFile >> "CfgPatches" >> "ace_arsenal");
EGVAR(patches,usesACETagging) = isClass (configFile >> "CfgPatches" >> "ace_tagging");
EGVAR(patches,usesACEX) = isClass (configFile >> "CfgPatches" >> "acex_main");
EGVAR(patches,usesKat) = isClass (configFile >> "CfgPatches" >> "kat_main");
EGVAR(patches,usesACRE) = isClass (configFile >> "CfgPatches" >> "acre_sys_core");
Expand Down Expand Up @@ -46,10 +45,6 @@ EGVAR(PYLONS,DONE) = false;
GVAR(PYLONS) = call EFUNC(init,pylons);
EGVAR(PYLONS,DONE) = true;

if (EGVAR(Settings,allowCustomTagging)) then {
call EFUNC(init,aceTagging);
};

call EFUNC(init,chatCommands);

call EFUNC(init,zenModuels);
Expand Down
44 changes: 0 additions & 44 deletions cScripts/functions/init/fn_init_aceTagging.sqf

This file was deleted.

10 changes: 0 additions & 10 deletions cScripts/initSettings.inc.sqf
Original file line number Diff line number Diff line change
Expand Up @@ -86,16 +86,6 @@ private _cScriptSettings = "cScripts Mission Settings";
{},
true
] call CBA_fnc_addSetting;
[ // Tagging
QEGVAR(Settings,allowCustomTagging),
"CHECKBOX",
["Custom Tagging","Allow players to spray custom taggs."],
[_cScriptSettings, "3; Player"],
true,
true,
{},
true
] call CBA_fnc_addSetting;
[ // Insignia
QEGVAR(Settings,allowInsigniaApplication),
"CHECKBOX",
Expand Down

0 comments on commit ccfadf8

Please sign in to comment.