Advertisement
GlorifiedPig

Untitled

Jul 11th, 2020
803
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.19 KB | None | 0 0
  1.  
  2. GlorifiedHandcuffs.Config.BREAK_FREE_ENABLED = true -- Should the break free system be enabled?
  3. GlorifiedHandcuffs.Config.BREAK_FREE_MIN_TIME = 0.05 -- What's the minimum time between clicks when breaking out?
  4. GlorifiedHandcuffs.Config.BREAK_FREE_EXPIRY_TIME = 0.11 -- What's the maximum time between clicks when breaking out?
  5. GlorifiedHandcuffs.Config.BREAK_FREE_TOTAL = 100 -- How many clicks are required to break out?
  6. GlorifiedHandcuffs.Config.BREAK_FREE_WANTED = true -- Should we make the player wanted for breaking out?
  7. GlorifiedHandcuffs.Config.BREAK_FREE_SOUND_ON_FAILURE = true -- Should we play a 3D sound when the player fails breaking out?
  8. GlorifiedHandcuffs.Config.BREAK_FREE_SOUND_ON_FAILURE_PATH = "physics/metal/metal_box_impact_hard2.wav" -- See above.
  9.  
  10. GlorifiedHandcuffs.Config.JAILER_ARREST_TIME = 120 -- How long will a player be arrested at the jailer for?
  11. GlorifiedHandcuffs.Config.JAILER_ARREST_REWARD = 100 -- How much will a cop get rewarded for an arrest? Only works if jail only mode is off.
  12. GlorifiedHandcuffs.Config.TEAM_CHANGE_UPON_JAIL = false -- Should we change the player's job upon jailing?
  13. GlorifiedHandcuffs.Config.TEAM_CHANGE_UPON_JAIL_TEAM = TEAM_CITIZEN -- Which job would you like to change to?
  14. GlorifiedHandcuffs.Config.JAIL_ONLY_MODE = false -- Set to true if you would like the handcuffs to behave like an arrest baton, arresting upon handcuffing.
  15.  
  16. GlorifiedHandcuffs.Config.CAN_NORMAL_PLAYER_HANDCUFF_WITHOUT_SURRENDER = true -- Can a normal player handcuff without the person being handcuffed surrendering?
  17. GlorifiedHandcuffs.Config.HANDCUFF_DISTANCE = 125 -- How far can a player handcuff from?
  18. GlorifiedHandcuffs.Config.TIME_TO_CUFF = 0.4 -- How many seconds must the player remain within distance to handcuff?
  19.  
  20. GlorifiedHandcuffs.Config.DRAG_SPEED_LIMIT = true -- Is there a speed limit on dragging?
  21. GlorifiedHandcuffs.Config.DRAG_SPEED_LIMIT = 500 -- What's the speed limit on dragging?
  22.  
  23. GlorifiedHandcuffs.Config.BAIL_AMOUNT = 2500 -- How much does it cost to bail someone out?
  24.  
  25. GlorifiedHandcuffs.Config.BREAK_FREE_KEY = KEY_E -- The key to break free.
  26. GlorifiedHandcuffs.Config.BREAK_FREE_KEY_NAME = "E" -- The string for the key that appears in the HUD.
  27. GlorifiedHandcuffs.Config.TOGGLE_SURRENDER_KEY = KEY_J -- The key to surrender.
  28. GlorifiedHandcuffs.Config.TOGGLE_SURRENDER_KEY_NAME = "J" -- The string for the key that appears in the HUD.
  29.  
  30. GlorifiedHandcuffs.Config.NIGHTSTICK_STUN_TIME = 5 -- How many seconds should the Nightstick freeze a player for?
  31. GlorifiedHandcuffs.Config.NIGHTSTICK_STUN_PUSH_DISTANCE = 100 -- How far should the Nightstick push a stunned player?
  32.  
  33. GlorifiedHandcuffs.Config.PLAYERMODEL_WHITELIST = { -- Which player models cannot be handcuffed?
  34. ["example_model_here.mdl"] = true
  35. }
  36. GlorifiedHandcuffs.Config.TEAM_WHITELIST = { -- Which teams cannot be handcuffed?
  37. [TEAM_CITIZEN] = false,
  38. }
  39.  
  40. GlorifiedHandcuffs.Config.WEAPON_BLACKLIST_IS_WHITELIST = false -- Is the below blacklist a whitelist?
  41. GlorifiedHandcuffs.Config.WEAPON_BLACKLIST = { -- Which weapons will not appear in the confiscate menu.
  42. ["keys"] = true,
  43. ["arrest_stick"] = true,
  44. ["door_ram"] = true,
  45. ["lockpick"] = true,
  46. ["med_kit"] = true,
  47. ["pocket"] = true,
  48. ["stunstick"] = true,
  49. ["unarrest_stick"] = true,
  50. ["weaponchecker"] = true,
  51. ["weapon_keypadchecker"] = true,
  52. ["weapon_bugbait"] = true,
  53. ["weapon_fists"] = true,
  54. ["gmod_camera"] = true,
  55. ["manhack_welder"] = true,
  56. ["weapon_medkit"] = true,
  57. ["gmod_tool"] = true,
  58. ["weapon_physgun"] = true,
  59. ["weapon_physcannon"] = true,
  60. ["glorifiedhandcuffs_restrained"] = true,
  61. ["glorifiedhandcuffs_handcuffs"] = true,
  62. ["glorifiedhandcuffs_nightstick"] = true,
  63. ["glorifiedbanking_card"] = true,
  64. }
  65. GlorifiedHandcuffs.Config.LEGAL_WEAPONS = { -- Weapons that are legal with a gun license.
  66. ["weapon_glock2"] = true,
  67. ["weapon_fiveseven2"] = true,
  68. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement