From ca503a7b9ff788218f6d07a93cd4adc5146dd415 Mon Sep 17 00:00:00 2001 From: CapsAdmin Date: Wed, 22 May 2013 14:26:17 +0000 Subject: [PATCH] added "moved to github" message git-svn-id: http://gmodcapsadmin.googlecode.com/svn/trunk/addons/pac3@761 047d434e-d786-fb00-e516-99c5e643cd71 --- lua/pac3/core/shared/init.lua | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/lua/pac3/core/shared/init.lua b/lua/pac3/core/shared/init.lua index ed066d33..29742322 100644 --- a/lua/pac3/core/shared/init.lua +++ b/lua/pac3/core/shared/init.lua @@ -11,4 +11,13 @@ local cvar = CreateConVar("pac_restrictions", "0", FCVAR_REPLICATED) function pac.GetRestrictionLevel() return cvar:GetInt() -end \ No newline at end of file +end + +timer.Create("pac_to_git_notify", 30, 0, function() + print("!!!!PAC3 has moved to GitHub!!!!") + print("the new address is:") + print("https://github.com/CapsAdmin/pac3") + + print("to keep using svn change the svn address to:") + print("https://github.com/CapsAdmin/pac3.git/trunk") +end) \ No newline at end of file