Advertisement
Guest User

Untitled

a guest
Aug 15th, 2018
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.25 KB | None | 0 0
  1. ----------------------
  2. -- Author : Deediezi
  3. -- Version 3.0
  4. --
  5. -- Contributors : No contributors at the moment.
  6. --
  7. -- Github link : https://github.com/Deediezi/FiveM_LockSystem
  8. -- You can contribute to the project. All the information is on Github.
  9.  
  10. -- Global configuration file
  11.  
  12. local Keys = {
  13. ["ESC"] = 322, ["F1"] = 288, ["F2"] = 289, ["F3"] = 170, ["F5"] = 166, ["F6"] = 167, ["F7"] = 168, ["F8"] = 169, ["F9"] = 56, ["F10"] = 57,
  14. ["~"] = 243, ["1"] = 157, ["2"] = 158, ["3"] = 160, ["4"] = 164, ["5"] = 165, ["6"] = 159, ["7"] = 161, ["8"] = 162, ["9"] = 163, ["-"] = 84, ["="] = 83, ["BACKSPACE"] = 177,
  15. ["TAB"] = 37, ["Q"] = 44, ["W"] = 32, ["E"] = 38, ["R"] = 45, ["T"] = 245, ["Y"] = 246, ["U"] = 303, ["P"] = 199, ["["] = 39, ["]"] = 40, ["ENTER"] = 18,
  16. ["CAPS"] = 137, ["A"] = 34, ["S"] = 8, ["D"] = 9, ["F"] = 23, ["G"] = 47, ["H"] = 74, ["K"] = 311, ["L"] = 182,
  17. ["LEFTSHIFT"] = 21, ["Z"] = 20, ["X"] = 73, ["C"] = 26, ["V"] = 0, ["B"] = 29, ["N"] = 249, ["M"] = 244, [","] = 82, ["."] = 81,
  18. ["LEFTCTRL"] = 36, ["LEFTALT"] = 19, ["SPACE"] = 22, ["RIGHTCTRL"] = 70,
  19. ["HOME"] = 213, ["PAGEUP"] = 10, ["PAGEDOWN"] = 11, ["DELETE"] = 178,
  20. ["LEFT"] = 174, ["RIGHT"] = 175, ["TOP"] = 27, ["DOWN"] = 173,
  21. ["NENTER"] = 201, ["N4"] = 108, ["N5"] = 60, ["N6"] = 107, ["N+"] = 96, ["N-"] = 97, ["N7"] = 117, ["N8"] = 61, ["N9"] = 118
  22. }
  23.  
  24. _VERSION = 3.1
  25.  
  26. globalConf = {
  27. ["SERVER"] = {
  28. versionChecker = true, -- Set to false for disable the version checker
  29. enableGiveKey = true -- Enable or disable the /givekey chatCommand
  30. },
  31.  
  32. ["CLIENT"] = {
  33. percentage = 50, -- Percentage chance of finding keys
  34. notification = 1, -- 0 = Disable | 1 = LockSystem notification | 2 = chatMessage notification
  35. key = Keys['L'], -- e.g : Keys["H"] will be change the U key to the H key for lock/unlock a vehicle
  36. disableCar_NPC = false, -- Set to true for disable NPC's car
  37. lockTimer = 3, -- Timer between two changes (open/close - in seconds)
  38. }
  39. }
  40.  
  41. ---- Random messages generated during key recovery.
  42. -- You can add or remove some.
  43. -- Don't forget commas, otherwise you will get an error when running the script
  44. randomMsg =
  45. {
  46. "Znalazles kluczyki w schowku!",
  47. "Kluczyki juz byly w stacyjce",
  48. "Znalazles kluczyki pod siedzeniem",
  49. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement