Advertisement
GlorifiedPig

Untitled

Dec 11th, 2018
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.27 KB | None | 0 0
  1.  
  2. --[[ ADMIN PERMISSION SETTINGS ]]--
  3. gAC.config.ADMIN_MESSAGE_USERGROUPS = { "admin", "superadmin" } -- Set all the usergroups who can see admin messages here.
  4. gAC.config.UNBAN_USERGROUPS = { "admin", "superadmin" } -- Set all the usergroups who can unban players here.
  5. --[[ ADMIN PERMISSION SETTINGS END ]]--
  6.  
  7. --[[ BAN SYSTEM SETTINGS ]]--
  8. gAC.config.BAN_TYPE = "custom" -- Set to 'custom' for the custom banning system, set to 'ulx' to use ulx.
  9. --[[ BAN SYSTEM SETTINGS END ]]--
  10.  
  11. --[[ CVAR MANIPULATION SETTINGS ]]
  12. gAC.config.ALLOWCSLUA_CHECKS = true -- Set to 'true' if you wish to check for sv_allowcslua being set to active.
  13. gAC.config.SVCHEATS_CHECKS = true -- Set to 'true' if you wish to check for sv_cheats being set to active.
  14.  
  15. gAC.config.CVARMANIP_PUNISHMENT = true -- Set to 'true' if you want to punish the player for C-var manipulation.
  16. gAC.config.CVARMANIP_BANTIME = 0 -- Set to '0' for permban, '-1' for kick and anything above for ban time in minutes.
  17.  
  18. gAC.config.CVARMANIP_RETURN_PUNISHMENT = true -- Set to 'true' if you wish to kick the player if the C-var manipulation results haven't returned.
  19. --[[ CVAR MANIPULATION SETTINGS END ]]
  20.  
  21. --[[ BACKOOR EXPLOITATION SETTINGS ]]--
  22. gAC.config.BACKDOOR_NET_EXPLOIT_CHECKS = true -- Whether or not to check for illegal net messages.
  23.  
  24. gAC.config.BACKDOOR_EXPLOITATION_PUNISHMENT = true -- Set to 'true' if you want using net exploits to be punishable.
  25. gAC.config.BACKDOOR_EXPLOITATION_BANTIME = 0 -- Set to '0' for permban, '-1' for kick and anything above for ban time in minutes.
  26. --[[ BACKOOR EXPLOITATION SETTINGS END ]]--
  27.  
  28. --[[ ILLEGAL CONCOMMAND SETTINGS ]]--
  29. gAC.config.ILLEGAL_CONCOMMAND_CHECKS = true -- Set to 'true' if you want to check for illegal console commands.
  30.  
  31. gAC.config.ILLEGAL_CONCOMMAND_PUNISHMENT = true -- Set to 'true' if you want using illegal concommands to be punishable.
  32. gAC.config.ILLEGAL_CONCOMMAND_BANTIME = 0 -- Set to '0' for permban, '-1' for kick and anything above for ban time in minutes.
  33. --[[ ILLEGAL CONCOMMAND SETTINGS END ]]--
  34.  
  35. --[[ RENDER HACK SETTINGS ]]--
  36. gAC.config.RENDER_HACK_CHECKS = true -- Set to 'true' if you want to check for render rewrites.
  37.  
  38. gAC.config.RENDER_HACK_PUNISHMENT = true -- Set to 'true' if you want using potential render hacks to be punishable.
  39. gAC.config.RENDER_HACK_BANTIME = 0 -- Set to '0' for permban, '-1' for kick and anything above for ban time in minutes.
  40. --[[ RENDER HACK SETTINGS END ]]--
  41.  
  42. --[[ FAMILY SHARING CHECK ]]--
  43. --[[ GUIDE FOR GETTING A STEAM API KEY:
  44. 1. Go to https://steamcommunity.com/dev/apikey
  45. 2. Name the key.
  46. 3. Create the key and paste it below.
  47.  
  48. Your key should look something like this: 1369GJ41970G26891B26AGGFAD526B49
  49. ]]--
  50. gAC.config.STEAM_API_KEY = "" -- Steam API key for the family sharing module.
  51.  
  52. gAC.config.ENABLE_FAMILY_SHARE_CHECKS = true -- Whether or not to check if the player is using a family shared account.
  53.  
  54. gAC.config.FAMILY_SHARE_PUNISHMENT = true -- Set to 'true' if you want using a family shared account to be punishable.
  55. gAC.config.FAMILY_SHARE_BANTIME = -1 -- Set to '0' for permban, '-1' for kick and anything above for ban time in minutes.
  56. --[[ FAMILY SHARING CHECK END ]]--
  57.  
  58. --[[ EXTERNAL CHECKS ]]--
  59. gAC.config.EXTERNAL_LUA_CHECKS = true -- Set to 'true' if you want to check for external checks.
  60.  
  61. gAC.config.EXTERNAL_LUA_PUNISHMENT = true -- Set to 'true' if you want using potential render hacks to be punishable.
  62. gAC.config.EXTERNAL_LUA_BANTIME = 0 -- Set to '0' for permban, '-1' for kick and anything above for ban time in minutes.
  63.  
  64. -- Do NOT touch the line below!
  65. gAC.adfkjlk1238123adjfl = { pcall, error, jit.util.funck, net.Start, net.SendToServer, net.ReadHeader, net.WriteString, util.NetworkIDToString, TypeID, debug.getinfo }
  66. --[[ EXTERNAL CHECKS END ]]--
  67.  
  68. --[[ GENERAL MODULE SETTINGS ]]--
  69. gAC.config.BHOP_CHECKS = true -- Set to 'true' if you wish for the anti-bhop module to be enabled.
  70. gAC.config.KEYBIND_CHECKS = true -- Set to 'true' if you wish for suspicious keybindings to be logged.
  71. gAC.config.DISABLE_BAD_COMMANDS = true -- Set to 'true' if you wish for sv_allowcslua and sv_cheats to be disabled on server startup.
  72. --[[ GENERAL MODULE SETTINGS END ]]--
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement