Advertisement
Guest User

Untitled

a guest
Jan 28th, 2020
131
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.98 KB | None | 0 0
  1. TierPrinters.Config.Tiers = {
  2.  
  3.         [1] = {
  4.                 color = Color(100,0,0),
  5.                 price = 0, -- The price doesn't matter for the first tier, just keep it 0
  6.                 amount = 5000
  7.         },
  8.         [2] = {
  9.                 color = Color(200,0,0),
  10.                 price = 10000,
  11.                 amount = 7500
  12.         },
  13.         [3] = {
  14.                 color = Color(200,100,0),
  15.                 price = 15000,
  16.                 amount = 10000
  17.         },
  18.         [4] = {
  19.                 color = Color(200,200,0),
  20.                 price = 20000,
  21.                 amount = 12500
  22.         },
  23.         [5] = {
  24.                 color = Color(100,200,0),
  25.                 price = 25000,
  26.                 amount = 15000,
  27.                 limit = 150000
  28.         },
  29.         [6] = {
  30.                 color = Color(0,200,0),
  31.                 price = 30000,
  32.                 amount = 17500,
  33.                 limit = 200000
  34.         },
  35.         [7] = {
  36.                 color = Color(0,200,100),
  37.                 price = 40000,
  38.                 amount = 20000,
  39.                 limit = 300000
  40.         },
  41.         [8] = {
  42.                 color = Color(0,200,200),
  43.                 price = 50000,
  44.                 amount = 25000,
  45.                 limit = 500000,
  46.                 customCheck = function(ply) return table.HasValue({"Bronze VIP, Silver VIP", "Diamond VIP", "superadmin"}, ply:GetUserGroup()) end
  47.         },
  48.         [9] = {
  49.                 color = Color(0,100,200),
  50.                 price = 75000,
  51.                 amount = 40000,
  52.                 customCheck = function(ply) return table.HasValue({"Silver VIP", "Diamond VIP", "superadmin"}, ply:GetUserGroup()) end
  53.         },
  54.         [10] = {
  55.                 color = Color(0,0,200),
  56.                 price = 100000,
  57.                 amount = 50000,
  58.                 customCheck = function(ply) return table.HasValue({"Diamond VIP", "superadmin"}, ply:GetUserGroup()) end
  59.         },
  60.  
  61. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement