Guest User

dasdasd

a guest
Jan 10th, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.50 KB | None | 0 0
  1. ---- Rank Settings
  2. -- Levelcaps and custom ranks.
  3.  
  4. SimpleXPConfig.LevelCap = 100
  5. -- Values: Any positive full number.
  6. -- Puts a level cap in place, this is the point where experience is no longer collected.
  7. -- If the level cap is lowered, then all players who exceeded that level cap will have their XP reduced to that level.
  8. -- If you don't want a level cap, its best to set the value to something impossibly high like 1000 or 5000.
  9.  
  10. SimpleXPConfig.EnableCustomRanks = true
  11. -- Values: true, false
  12. -- Enables custom ranks. See below.
  13.  
  14. SimpleXPConfig.CustomRanks = {} -- DON'T TOUCH THIS
  15. -- How it works: number is converted into an actual rank
  16. -- Example: SimpleXPConfig.CustomRanks[0] = "Recruit"
  17. -- This means that if the person is rank 0, it will display "Recruit" instead
  18. -- If someone is higher than the maximum ranks, in this case rank 66, it will add prestige <number passed maximum rank> at the end of the rank if it is passed the level cap.
  19.  
  20. SimpleXPConfig.CustomRanks[0] = "Recruit"
  21.  
  22. SimpleXPConfig.CustomRanks[1] = "Private I"
  23. SimpleXPConfig.CustomRanks[2] = "Private II"
  24.  
  25. SimpleXPConfig.CustomRanks[3] = "Private First Class I"
  26. SimpleXPConfig.CustomRanks[4] = "Private First Class II"
  27.  
  28. SimpleXPConfig.CustomRanks[5] = "Specialist I"
  29. SimpleXPConfig.CustomRanks[6] = "Specialist II"
  30. SimpleXPConfig.CustomRanks[7] = "Specialist III"
  31.  
  32. SimpleXPConfig.CustomRanks[8] = "Corporal I"
  33. SimpleXPConfig.CustomRanks[9] = "Corporal II"
  34. SimpleXPConfig.CustomRanks[10] = "Corporal III"
  35.  
  36. SimpleXPConfig.CustomRanks[11] = "Sergeant I"
  37. SimpleXPConfig.CustomRanks[12] = "Sergeant II"
  38. SimpleXPConfig.CustomRanks[13] = "Sergeant III"
  39.  
  40. SimpleXPConfig.CustomRanks[14] = "Staff Sergeant I"
  41. SimpleXPConfig.CustomRanks[15] = "Staff Sergeant II"
  42. SimpleXPConfig.CustomRanks[16] = "Staff Sergeant III"
  43. SimpleXPConfig.CustomRanks[17] = "Staff Sergeant IV"
  44.  
  45. SimpleXPConfig.CustomRanks[18] = "Sergeant First Class I"
  46. SimpleXPConfig.CustomRanks[19] = "Sergeant First Class II"
  47. SimpleXPConfig.CustomRanks[20] = "Sergeant First Class III"
  48. SimpleXPConfig.CustomRanks[21] = "Sergeant First Class IV"
  49.  
  50. SimpleXPConfig.CustomRanks[22] = "Master Sergeant I"
  51. SimpleXPConfig.CustomRanks[23] = "Master Sergeant II"
  52. SimpleXPConfig.CustomRanks[24] = "Master Sergeant III"
  53. SimpleXPConfig.CustomRanks[25] = "Master Sergeant IV"
  54.  
  55. SimpleXPConfig.CustomRanks[26] = "First Sergeant I"
  56. SimpleXPConfig.CustomRanks[27] = "First Sergeant II"
  57. SimpleXPConfig.CustomRanks[28] = "First Sergeant III"
  58. SimpleXPConfig.CustomRanks[29] = "First Sergeant IV"
  59.  
  60. SimpleXPConfig.CustomRanks[30] = "Sergeant Major I"
  61. SimpleXPConfig.CustomRanks[31] = "Sergeant Major II"
  62. SimpleXPConfig.CustomRanks[32] = "Sergeant Major III"
  63. SimpleXPConfig.CustomRanks[33] = "Sergeant Major IV"
  64. SimpleXPConfig.CustomRanks[34] = "Sergeant Major V"
  65.  
  66. SimpleXPConfig.CustomRanks[35] = "Command Sergeant Major I"
  67. SimpleXPConfig.CustomRanks[36] = "Command Sergeant Major II"
  68. SimpleXPConfig.CustomRanks[37] = "Command Sergeant Major III"
  69. SimpleXPConfig.CustomRanks[38] = "Command Sergeant Major IV"
  70. SimpleXPConfig.CustomRanks[39] = "Command Sergeant Major V"
  71.  
  72. SimpleXPConfig.CustomRanks[40] = "Sergeant Major of the Army I"
  73. SimpleXPConfig.CustomRanks[41] = "Sergeant Major of the Army II"
  74. SimpleXPConfig.CustomRanks[42] = "Sergeant Major of the Army III"
  75. SimpleXPConfig.CustomRanks[43] = "Sergeant Major of the Army IV"
  76. SimpleXPConfig.CustomRanks[44] = "Sergeant Major of the Army V"
  77.  
  78. SimpleXPConfig.CustomRanks[45] = "Warrant Officer I"
  79. SimpleXPConfig.CustomRanks[46] = "Warrant Officer II"
  80. SimpleXPConfig.CustomRanks[47] = "Warrant Officer III"
  81. SimpleXPConfig.CustomRanks[48] = "Warrant Officer IV"
  82. SimpleXPConfig.CustomRanks[49] = "Warrant Officer V"
  83.  
  84. SimpleXPConfig.CustomRanks[50] = "Chief Warrant Officer I"
  85. SimpleXPConfig.CustomRanks[51] = "Chief Warrant Officer II"
  86. SimpleXPConfig.CustomRanks[52] = "Chief Warrant Officer III"
  87. SimpleXPConfig.CustomRanks[53] = "Chief Warrant Officer IV"
  88. SimpleXPConfig.CustomRanks[54] = "Chief Warrant Officer V"
  89.  
  90. SimpleXPConfig.CustomRanks[55] = "Second Lieutenant"
  91. SimpleXPConfig.CustomRanks[56] = "First Lieutenant"
  92. SimpleXPConfig.CustomRanks[57] = "Captain"
  93. SimpleXPConfig.CustomRanks[58] = "Major"
  94. SimpleXPConfig.CustomRanks[59] = "Lieutenant Colonel"
  95.  
  96. SimpleXPConfig.CustomRanks[60] = "Colonel"
  97. SimpleXPConfig.CustomRanks[61] = "Brigadier General"
  98. SimpleXPConfig.CustomRanks[62] = "Major General"
  99. SimpleXPConfig.CustomRanks[63] = "Lieutenant General"
  100. SimpleXPConfig.CustomRanks[64] = "General"
  101. SimpleXPConfig.CustomRanks[65] = "General of the Army"
Advertisement
Add Comment
Please, Sign In to add comment