Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Removed Tagging system #1209

Merged
merged 2 commits into from
Jul 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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