Advertisement
Guest User

Untitled

a guest
Mar 21st, 2018
239
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.39 KB | None | 0 0
  1. --[[
  2. © 2018 devultj.co.uk, do not share, re-distribute or modify
  3.  
  4. without permission of its author (devultj@gmail.com) - 76561198196521101 - Script ID: 1.0.6
  5. ]]
  6.  
  7. dHeists.config.debugEnabled = not game.IsDedicated()
  8. dHeists.config.debugEnabled = false
  9.  
  10. dHeists.config.disablePlayerDrawHook = true
  11.  
  12. dHeists.config.drillModel = "models/monmonstar/pd2_drill/drill_small.mdl" -- Leave to default if you don't know what to do with this
  13. dHeists.config.drillMaterial = nil -- You can set custom materials for the drill
  14. dHeists.config.drillWorth = 2500
  15. dHeists.config.drillTeams = {
  16. "Gangster",
  17. "Mob boss"
  18. }
  19.  
  20. dHeists.config.bagModel = "models/jessev92/payday2/item_Bag_loot.mdl" -- Leave to default if you don't know what to do with this
  21. dHeists.config.defaultBagCapacity = 4
  22.  
  23. dHeists.config.currency = "$"
  24.  
  25. dHeists.config.fontFace = "Purista"
  26. dHeists.config.fontWeight = 800 -- 800 is bold, 0 is skinny
  27.  
  28. dHeists.config.bagPickUpTime = 2
  29. dHeists.config.alternateBagPos = false -- Places bags rotated on the player's back.
  30.  
  31. dHeists.config.holdingBagMovementModifierPerItem = 0.025 -- 10% less per item
  32. dHeists.config.holdingBagMovementModifierMax = 0.2 -- 30% max movement speed reduction
  33.  
  34. dHeists.config.defaultBagThrowStrength = 300
  35. dHeists.config.defaultBagThrowStrengthSprintMultiplier = 2
  36. dHeists.config.holdingBagAngleOffset = 5 -- 10 degrees
  37. dHeists.config.dropBagCommand = "dheists_dropbag"
  38.  
  39. dHeists.config.dropBagKey = KEY_J
  40. dHeists.config.maskEquipKey = KEY_H
  41.  
  42. dHeists.config.confiscateBagActionColor = Color( 20, 20, 151 )
  43. dHeists.config.confiscateBagMoneyPrize = 1250
  44. dHeists.config.bagConfiscateTime = 4
  45.  
  46. dHeists.config.pickUpBagActionColor = Color( 20, 151, 20 )
  47.  
  48. dHeists.config.stealPickUpBagActionColor = Color( 255, 165, 20 )
  49. dHeists.config.stealPickUpBagTime = 4
  50.  
  51. dHeists.config.pickUpLootActionColor = Color( 20, 151, 20 )
  52.  
  53. dHeists.config.playMaskEquipSound = true
  54. dHeists.config.maskOnSounds = {
  55. male = {
  56. "vo/npc/male01/getdown02.wav",
  57. "vo/npc/male01/letsgo01.wav",
  58. "vo/npc/male01/letsgo02.wav",
  59. "vo/npc/male01/okimready01.wav"
  60. },
  61. female = {
  62. "vo/npc/female01/getdown02.wav",
  63. "vo/npc/female01/letsgo01.wav",
  64. "vo/npc/female01/letsgo02.wav"
  65. }
  66. }
  67.  
  68. --[[ Disallow pocketing dHeist entities: ADVISED to keep to true ]]
  69. dHeists.config.disablePocket = true
  70.  
  71. dHeists.config.cameraRespawnTime = 600
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement