From b6047ca4ed2d116b54e7012a4404284fdb72ba16 Mon Sep 17 00:00:00 2001 From: Stooberton <5084958+Stooberton@users.noreply.github.com> Date: Sat, 25 Jul 2020 16:54:39 -0500 Subject: [PATCH 1/3] Update README.md --- README.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 0df9269cd..63764e025 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,6 @@ -# Armoured Combat Framework +# This version of ACF is no longer maintained. +## The newest version of ACF with active development can be found at https://github.com/Stooberton/ACF-3 + The Armoured Combat Framework is a [Garry's Mod][] addon which creates a balanced, realistic and fun to play combat damage system, simulating projectiles, armor and explosions, as well as engines and gearboxes. @@ -11,4 +13,4 @@ Be sure to check out the [ACF Wiki][] for more ACF related information. [Garry's Mod]: [FP forum ACF thread]: [ACF Issues]: -[ACF Wiki]: \ No newline at end of file +[ACF Wiki]: From 243bd2f98640fe7d5b3c2af0ed0fe43f22539651 Mon Sep 17 00:00:00 2001 From: Stoob Date: Sat, 25 Jul 2020 17:02:55 -0500 Subject: [PATCH 2/3] Added deprecated message --- lua/autorun/client/deprecated.lua | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 lua/autorun/client/deprecated.lua diff --git a/lua/autorun/client/deprecated.lua b/lua/autorun/client/deprecated.lua new file mode 100644 index 000000000..e5296e2a8 --- /dev/null +++ b/lua/autorun/client/deprecated.lua @@ -0,0 +1,8 @@ +hook.Add("CreateMove", "Old ACF", function(Move) + if Move:GetButtons() ~= 0 then + chat.AddText(Color(255, 255, 255), "[ACF] ", Color(255, 25, 25), "This version of ACF no longer maintained.") + chat.AddText(Color(255, 255, 255), "The newest version is available at ", Color(160, 255, 160), "https://github.com/Stooberton/ACF-3") + + hook.Remove("CreateMove", "Old ACF") + end +end) \ No newline at end of file From aaf7268194b0f70a064168c3c7d399f61a462db2 Mon Sep 17 00:00:00 2001 From: Stoob Date: Sat, 25 Jul 2020 17:03:21 -0500 Subject: [PATCH 3/3] Updated version number --- lua/autorun/acf_globals.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/autorun/acf_globals.lua b/lua/autorun/acf_globals.lua index 6287b9a54..c0c9c892e 100644 --- a/lua/autorun/acf_globals.lua +++ b/lua/autorun/acf_globals.lua @@ -2,7 +2,7 @@ ACF = {} ACF.AmmoTypes = {} ACF.MenuFunc = {} ACF.AmmoBlacklist = {} -ACF.Version = 661 -- REMEMBER TO CHANGE THIS FOR GODS SAKE, OMFG!!!!!!! -wrex Update the changelog too! -Ferv +ACF.Version = 662 -- REMEMBER TO CHANGE THIS FOR GODS SAKE, OMFG!!!!!!! -wrex Update the changelog too! -Ferv ACF.CurrentVersion = 0 -- just defining a variable, do not change ACF.Year = 1945