Advertisement
Guest User

test

a guest
Oct 26th, 2017
145
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.79 KB | None | 0 0
  1. --[[
  2. Script: gLevel
  3. Version: 1
  4. Copyrighted by Konnie Industries located in Mexico.
  5. ]]
  6.  
  7. gLevel.cfg = {}
  8. include( "sh_language.lua" )
  9. --[[ Database Configuration ]]
  10. ----------------------------------------------------------------------------------
  11. gLevel.cfg.enableMySQL = false
  12. gLevel.cfg.host = "localhost"
  13. gLevel.cfg.user = "root"
  14. gLevel.cfg.pass = ""
  15. gLevel.cfg.db = "your_database_name_here"
  16. gLevel.cfg.port = 3306
  17. ----------------------------------------------------------------------------------
  18.  
  19. --[[ Prestige Configs ]]
  20. ----------------------------------------------------------------------------------
  21. gLevel.cfg.enablePrestige = false -- Enable this feature
  22. gLevel.cfg.maxPrestige = 5 -- Max Prestiges required in order to prestige
  23. gLevel.cfg.requiredMoney = 1000000 -- Money required in order to prestige
  24. gLevel.cfg.resetAbilities = true -- Reset abilities when prestige
  25. gLevel.cfg.enableNames = false -- This will change the numbers for name you register. [ check sh_ranks for this ]
  26. ----------------------------------------------------------------------------------
  27.  
  28. --[[ Rewards Configs ]]
  29. ----------------------------------------------------------------------------------
  30. gLevel.cfg.prestigeKeys = 1 -- Amount of keys when user prestige [ as reward ]
  31. gLevel.cfg.levelPoints = 1 -- Amount of points when user level up
  32. gLevel.cfg.prestigePoints = 0 -- Amount of points when user prestige
  33. gLevel.cfg.levelKeys = 0 -- Amount of keys when the user level up
  34. gLevel.cfg.levelMoney = 10000 -- The amount you set here * user level. Example, if user level up to level 10, he will get ( 10 * 1,000 ) = 10,000
  35.  
  36. --[[ Achievements Rewards ]]
  37. gLevel.cfg.enablePS2 = false -- You can give standard + premium points with achievements
  38. ----------------------------------------------------------------------------------
  39.  
  40.  
  41. --[[ General Configs ]]
  42. ----------------------------------------------------------------------------------
  43. gLevel.cfg.chatCommand = "glevel"
  44. gLevel.cfg.Lang = "English" -- English Translation, French Translation [N1colas],
  45. gLevel.cfg.menuKey = "F8"
  46. gLevel.cfg.isDarkRP = true
  47. gLevel.cfg.maxLevel = 50
  48. gLevel.cfg.enableHUD = true
  49. gLevel.cfg.overrideDarkRPInfo = true
  50.  
  51. -- FIX Update
  52. gLevel.cfg.customKey = KEY_F8
  53. gLevel.cfg.enableNotifications = true
  54.  
  55. ----------------------------------------------------------------------------------
  56.  
  57. --[[ HUD Configs ]]
  58. ----------------------------------------------------------------------------------
  59. gLevel.cfg.hudAlign = "TCenter" -- TopCenter, TopLeft, TopRight, BottomCenter, BottomLeft, BottomRight [ TCenter, TLeft, TRight, BCenter, BLeft, BRight ]
  60. gLevel.cfg.hudW = 400
  61. gLevel.cfg.hudH = 10
  62. ----------------------------------------------------------------------------------
  63.  
  64. --[[ Tab Configs ]]
  65. ----------------------------------------------------------------------------------
  66. gLevel.cfg.userGroups = {
  67. [ "admin" ] = {
  68. name = "Administrator",
  69. color = Color( 255, 163, 0, 150 ),
  70. boost = 0
  71. },
  72. [ "superadmin" ] = {
  73. name = "Super Admin",
  74. color = Color( 0, 127, 127, 150 ),
  75. boost = 0
  76. },
  77. [ "owner" ] = {
  78. name = "Owner",
  79. color = Color( 191, 127, 255, 150 ),
  80. boost = 100
  81. },
  82. [ "moderator" ] = {
  83. name = "Moderator",
  84. color = Color( 95, 127, 63, 150 ),
  85. boost = 0
  86. },
  87. [ "vip" ] = {
  88. name = "VIP Member",
  89. color = Color( 255, 223, 127, 150 ),
  90. boost = 0
  91. },
  92. [ "communitymanager" ] = {
  93. name = "Community Manager",
  94. color = Color( 255, 25, 25, 150 ),
  95. boost = 0
  96. }
  97. }
  98. ----------------------------------------------------------------------------------
  99.  
  100. --[[ Tab Configs ]]
  101. ----------------------------------------------------------------------------------
  102. gLevel.cfg.defaultTab = "Leaderboards"
  103. gLevel.cfg.enableBug = false
  104. gLevel.cfg.displayRanks = true
  105. gLevel.cfg.codeMode = false
  106. ----------------------------------------------------------------------------------
  107.  
  108. --[[ Experience Ways! ]]
  109. ----------------------------------------------------------------------------------
  110. -- FIX Update 2.0 Update
  111. gLevel.cfg.plyKill = false
  112. gLevel.cfg.plyKillExp = 20
  113. gLevel.cfg.plyKillcooldown = 5
  114. ----------------------------------------------------------------------------------
  115. gLevel.cfg.npcKill = false
  116. gLevel.cfg.npcExp = 1000
  117.  
  118. gLevel.cfg.timeExp = true
  119. gLevel.cfg.time = 10
  120. gLevel.cfg.timeExpAmount = 5
  121.  
  122. gLevel.cfg.buydoorExp = false
  123. gLevel.cfg.cooldown = 20
  124. gLevel.cfg.doorExp = 20
  125.  
  126. gLevel.cfg.arrestExp = false
  127. gLevel.cfg.arrestexp = 20
  128.  
  129. gLevel.cfg.unarrestExp = false
  130. gLevel.cfg.unarrestexp = 20
  131. ----------------------------------------------------------------------------------
  132.  
  133. --[[ Skills Configruation ]]
  134. ----------------------------------------------------------------------------------
  135. gLevel.cfg.Resistance = true -- enable dmg resistance ability
  136. gLevel.cfg.resAmount = 5 -- Nª of upgrades.
  137. gLevel.cfg.resistance = 5 -- 5% each upgrade.
  138.  
  139. gLevel.cfg.JumpPower = true -- enable jump power ability
  140. gLevel.cfg.jumpAmount = 5 -- Nª of upgrades.
  141. gLevel.cfg.jump = 10 -- 20 Jump Power each upgrade.
  142.  
  143. gLevel.cfg.Healths = true -- enable health improve ability
  144. gLevel.cfg.healAmount = 15 -- Nª of upgrades.
  145. gLevel.cfg.health = 10 -- 10 health each upgrade.
  146.  
  147. gLevel.cfg.Fall = true -- enable fall resistance ability
  148. gLevel.cfg.fallAmount = 5 -- Nª of upgrades.
  149. gLevel.cfg.fall = 10 -- 5% less dmg each upgrade.
  150.  
  151. gLevel.cfg.Speed = true -- enable speed ability
  152. gLevel.cfg.speedAmount = 5 -- Nª of upgrades.
  153. gLevel.cfg.speed = 25 -- 25 speed each upgrade.
  154.  
  155. gLevel.cfg.Experience = true -- enable experience ability
  156. gLevel.cfg.expAmount = 5 -- Nª of upgrades.
  157. gLevel.cfg.experience = 5 -- 5% extra experience each upgrade.
  158. ----------------------------------------------------------------------------------
  159.  
  160.  
  161. --- September Update
  162. gLevel.cfg.displayWeapons = false -- Enable Model Display at weapons tab instead of a picture.
  163. gLevel.cfg.eraseCommand = "erasedata" -- type !erasedata or /erasedata in chat as Super Administrator.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement