Advertisement
Guest User

Untitled

a guest
Jul 27th, 2017
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.15 KB | None | 0 0
  1. -- TODO: Add
  2. SETTINGS = {
  3. enable_database = false, -- Set to false if you don't want to save the loadouts to the database
  4. database = { -- Database settings (please change)
  5. ip = "127.0.0.1", -- IP of the SQL server
  6. database = "gta5_gamemode_essential", -- Can use the essentialmode database or, a new one. Up to you :)
  7. username = "root",
  8. password = ""
  9. },
  10.  
  11. chat_colour = { 255, 255, 255 } -- RGB Format
  12. }
  13.  
  14. -- Edit the table below for more loadouts!
  15. LOADOUTS = {
  16. ["sheriff"] = { -- This is the command that is used to get the loadout (i.e. /loadout cop)
  17. name = "Shreiff", -- The name of the loadout (shown to the player)
  18. permission_level = 2, -- The player must hhave this permission to get the loadout
  19. -- Below is a list of weapons the player gets with the loadout (see https://www.se7ensins.com/forums/threads/weapon-and-explosion-hashes-list.1045035/)
  20. weapons = { "WEAPON_PISTOL50", "WEAPON_STUNGUN", "WEAPON_NIGHTSTICK", "WEAPON_PUMPSHOTGUN", "WEAPON_FLAREGUN" },
  21. --Below is a list of skins (randomly picked) the player can become with this loadout (see http://www.nextgenupdate.com/forums/gta-5-mods/725735-full-npcs-ped-models-characters-list-case-you-need-p-3.html)
  22. skins = { "s_m_y_swat_01" }
  23. },
  24. ["trooper"] = {
  25. name = "State Trooper",
  26. permission_level = 0,
  27. weapons = { "WEAPON_PISTOL50", "WEAPON_STUNGUN", "WEAPON_NIGHTSTICK", "WEAPON_PUMPSHOTGUN", "WEAPON_FLAREGUN", "WEAPON_ASSAULTSMG" },
  28. skins = { "s_m_y_swat_01"},
  29. spawnPos = { -- A list of potential spawn points for this loadout (randomly picked)
  30. {
  31. x = 2409.005,
  32. y = 3079.255,
  33. z = 48.15277
  34. },
  35. {
  36. x = 2409.005,
  37. y = 3079.255,
  38. z = 48.15277
  39. }
  40. },
  41. randomize = true -- Randomise the character based on the player's identifier
  42. },
  43. ["emt"] = {
  44. name = "EMT",
  45. skins = { "player_two" }, -- trevor
  46. randomize = true -- Randomise the character based on the player's identifier
  47. },
  48. ["fire"] = {
  49. name = "Fire Fighter",
  50. weapons = { "WEAPON_PETROLCAN" },
  51. skins = {"a_m_y_skater_01",
  52. "a_m_y_skater_02",
  53. "a_m_m_beach_01",
  54. "a_m_m_bevhills_01",
  55. "a_m_m_bevhills_02",
  56. "a_m_m_business_01",
  57. "a_m_m_eastsa_01",
  58. "a_m_m_eastsa_02",
  59. "a_m_m_farmer_01",
  60. "a_m_m_genfat_01",
  61. "a_m_m_golfer_01",
  62. "a_m_m_hillbilly_01",
  63. "a_m_m_indian_01",
  64. "a_m_m_mexcntry_01",
  65. "a_m_m_paparazzi_01",
  66. "a_m_m_tramp_01",
  67. "a_m_y_hiker_01",
  68. "a_m_y_hippy_01",
  69. "a_m_y_genstreet_01",
  70. "a_m_m_socenlat_01",
  71. "a_m_m_og_boss_01",
  72. "a_f_y_tourist_02",
  73. "a_f_y_tourist_01",
  74. "a_f_y_soucent_01",
  75. "a_f_y_scdressy_01",
  76. "a_m_y_cyclist_01",
  77. "a_m_y_golfer_01"
  78. }
  79. }
  80. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement