Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- ---- Rank Settings
- -- Levelcaps and custom ranks.
- SimpleXPConfig.LevelCap = 100
- -- Values: Any positive full number.
- -- Puts a level cap in place, this is the point where experience is no longer collected.
- -- If the level cap is lowered, then all players who exceeded that level cap will have their XP reduced to that level.
- -- If you don't want a level cap, its best to set the value to something impossibly high like 1000 or 5000.
- SimpleXPConfig.EnableCustomRanks = true
- -- Values: true, false
- -- Enables custom ranks. See below.
- SimpleXPConfig.CustomRanks = {} -- DON'T TOUCH THIS
- -- How it works: number is converted into an actual rank
- -- Example: SimpleXPConfig.CustomRanks[0] = "Recruit"
- -- This means that if the person is rank 0, it will display "Recruit" instead
- -- 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.
- SimpleXPConfig.CustomRanks[0] = "Recruit"
- SimpleXPConfig.CustomRanks[1] = "Private I"
- SimpleXPConfig.CustomRanks[2] = "Private II"
- SimpleXPConfig.CustomRanks[3] = "Private First Class I"
- SimpleXPConfig.CustomRanks[4] = "Private First Class II"
- SimpleXPConfig.CustomRanks[5] = "Specialist I"
- SimpleXPConfig.CustomRanks[6] = "Specialist II"
- SimpleXPConfig.CustomRanks[7] = "Specialist III"
- SimpleXPConfig.CustomRanks[8] = "Corporal I"
- SimpleXPConfig.CustomRanks[9] = "Corporal II"
- SimpleXPConfig.CustomRanks[10] = "Corporal III"
- SimpleXPConfig.CustomRanks[11] = "Sergeant I"
- SimpleXPConfig.CustomRanks[12] = "Sergeant II"
- SimpleXPConfig.CustomRanks[13] = "Sergeant III"
- SimpleXPConfig.CustomRanks[14] = "Staff Sergeant I"
- SimpleXPConfig.CustomRanks[15] = "Staff Sergeant II"
- SimpleXPConfig.CustomRanks[16] = "Staff Sergeant III"
- SimpleXPConfig.CustomRanks[17] = "Staff Sergeant IV"
- SimpleXPConfig.CustomRanks[18] = "Sergeant First Class I"
- SimpleXPConfig.CustomRanks[19] = "Sergeant First Class II"
- SimpleXPConfig.CustomRanks[20] = "Sergeant First Class III"
- SimpleXPConfig.CustomRanks[21] = "Sergeant First Class IV"
- SimpleXPConfig.CustomRanks[22] = "Master Sergeant I"
- SimpleXPConfig.CustomRanks[23] = "Master Sergeant II"
- SimpleXPConfig.CustomRanks[24] = "Master Sergeant III"
- SimpleXPConfig.CustomRanks[25] = "Master Sergeant IV"
- SimpleXPConfig.CustomRanks[26] = "First Sergeant I"
- SimpleXPConfig.CustomRanks[27] = "First Sergeant II"
- SimpleXPConfig.CustomRanks[28] = "First Sergeant III"
- SimpleXPConfig.CustomRanks[29] = "First Sergeant IV"
- SimpleXPConfig.CustomRanks[30] = "Sergeant Major I"
- SimpleXPConfig.CustomRanks[31] = "Sergeant Major II"
- SimpleXPConfig.CustomRanks[32] = "Sergeant Major III"
- SimpleXPConfig.CustomRanks[33] = "Sergeant Major IV"
- SimpleXPConfig.CustomRanks[34] = "Sergeant Major V"
- SimpleXPConfig.CustomRanks[35] = "Command Sergeant Major I"
- SimpleXPConfig.CustomRanks[36] = "Command Sergeant Major II"
- SimpleXPConfig.CustomRanks[37] = "Command Sergeant Major III"
- SimpleXPConfig.CustomRanks[38] = "Command Sergeant Major IV"
- SimpleXPConfig.CustomRanks[39] = "Command Sergeant Major V"
- SimpleXPConfig.CustomRanks[40] = "Sergeant Major of the Army I"
- SimpleXPConfig.CustomRanks[41] = "Sergeant Major of the Army II"
- SimpleXPConfig.CustomRanks[42] = "Sergeant Major of the Army III"
- SimpleXPConfig.CustomRanks[43] = "Sergeant Major of the Army IV"
- SimpleXPConfig.CustomRanks[44] = "Sergeant Major of the Army V"
- SimpleXPConfig.CustomRanks[45] = "Warrant Officer I"
- SimpleXPConfig.CustomRanks[46] = "Warrant Officer II"
- SimpleXPConfig.CustomRanks[47] = "Warrant Officer III"
- SimpleXPConfig.CustomRanks[48] = "Warrant Officer IV"
- SimpleXPConfig.CustomRanks[49] = "Warrant Officer V"
- SimpleXPConfig.CustomRanks[50] = "Chief Warrant Officer I"
- SimpleXPConfig.CustomRanks[51] = "Chief Warrant Officer II"
- SimpleXPConfig.CustomRanks[52] = "Chief Warrant Officer III"
- SimpleXPConfig.CustomRanks[53] = "Chief Warrant Officer IV"
- SimpleXPConfig.CustomRanks[54] = "Chief Warrant Officer V"
- SimpleXPConfig.CustomRanks[55] = "Second Lieutenant"
- SimpleXPConfig.CustomRanks[56] = "First Lieutenant"
- SimpleXPConfig.CustomRanks[57] = "Captain"
- SimpleXPConfig.CustomRanks[58] = "Major"
- SimpleXPConfig.CustomRanks[59] = "Lieutenant Colonel"
- SimpleXPConfig.CustomRanks[60] = "Colonel"
- SimpleXPConfig.CustomRanks[61] = "Brigadier General"
- SimpleXPConfig.CustomRanks[62] = "Major General"
- SimpleXPConfig.CustomRanks[63] = "Lieutenant General"
- SimpleXPConfig.CustomRanks[64] = "General"
- SimpleXPConfig.CustomRanks[65] = "General of the Army"
Advertisement
Add Comment
Please, Sign In to add comment