Advertisement
Guest User

Untitled

a guest
Nov 22nd, 2022
1,474
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.47 KB | None | 0 0
  1. Config = {}
  2.  
  3. Config.target = {
  4. enabled = true,
  5. system = 'qtarget' -- 'qtarget' or 'qb-target' or 'ox_target' (Other systems might work as well)
  6. }
  7.  
  8. Config.outfitChangeAnimation = {
  9. enabled = true,
  10. }
  11.  
  12. Config.undressTarget = true
  13.  
  14. ----------------------------------------------------------------------------------------------
  15. --- KEYBINDS
  16. ----------------------------------------------------------------------------------------------
  17. -- https://docs.fivem.net/docs/game-references/controls/
  18. -- Use the input index for the "input" value
  19. Config.interactKeybind = {
  20. label = "X",
  21. input = 120,
  22. }
  23.  
  24. Config.pickupText = "Press ~g~[~w~{KEYBIND}~g~]~w~ to steal clothes" -- if qtarget not enabled
  25.  
  26. Config.drawable = {
  27. ['mask'] = 1,
  28. ['torso'] = 3,
  29. ['legs'] = 4,
  30. ['bag'] = 5,
  31. ['feet'] = 6,
  32. ['accessory'] = 7,
  33. ['undershirt'] = 8,
  34. ['chest'] = 9,
  35. ['decals'] = 10,
  36. ['tops'] = 11,
  37. }
  38.  
  39. Config.props = {
  40. ['helmet'] = 0,
  41. ['glasses'] = 1,
  42. ['ear'] = 2,
  43. }
  44.  
  45. Config.naked = {
  46. [1885233650] = { -- Male
  47. top = {
  48. ['torso'] = 15,
  49. ['undershirt'] = 15,
  50. ['tops'] = 15,
  51. ['accessory'] = 0,
  52. ['decals'] = 0,
  53. ['bag'] = 0,
  54. },
  55. bottom = {
  56. ['legs'] = 61,
  57. ['feet'] = 34,
  58. }
  59. -- male alternative
  60. --[[ top = {
  61. ['torso'] = 0,
  62. ['undershirt'] = 15,
  63. ['tops'] = 1,
  64. ['accessory'] = 0,
  65. ['decals'] = 0,
  66. ['bag'] = 0,
  67. },
  68. bottom = {
  69. ['legs'] = 61,
  70. ['feet'] = 34,
  71. } ]]
  72. },
  73. [-1667301416] = {
  74. top = { -- Female
  75. ['torso'] = 15,
  76. ['undershirt'] = 14,
  77. ['tops'] = 18,
  78. ['accessory'] = 0,
  79. ['decals'] = 0,
  80. ['bag'] = 0,
  81. },
  82. bottom = {
  83. ['legs'] = 62,
  84. ['feet'] = 35,
  85. }
  86. }
  87. }
  88.  
  89. Config.models = {
  90. [1885233650] = 'M',
  91. [-1667301416] = 'F'
  92. }
  93.  
  94. Config.outfitChangeAnimation = {
  95. enabled = true,
  96. duration = 5000,
  97. dict = 'mp_safehouseshower@male@',
  98. anim = 'male_shower_towel_dry_to_get_dressed',
  99. }
  100.  
  101. Config.stealableAnimations = {
  102. {"mp_arresting", "idle"},
  103. {"missminuteman_1ig_2", "handsup_enter"},
  104.  
  105. -- QBCore dead animations
  106. {"veh@low@front_ps@idle_duck", "sit"},
  107. {"dead", "dead_a"}
  108. }
  109.  
  110.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement