Advertisement
Guest User

Untitled

a guest
Nov 29th, 2015
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.96 KB | None | 0 0
  1. timer.Simple(4, function()
  2.     DarkRP.createCategory{
  3.         name = "Basic Money Printers",
  4.         categorises = "entities",
  5.         startExpanded = true,
  6.         color = Color(0, 119, 255, 255),
  7.         canSee = function(ply) return true end,
  8.         sortOrder = 1
  9.     }
  10.  
  11.     DarkRP.createCategory{
  12.         name = "Vip Money Printers",
  13.         categorises = "entities",
  14.         startExpanded = true,
  15.         color = Color(0, 119, 255, 255),
  16.         canSee = function (ply) return true end,
  17.         sortOrder = 1
  18.     }
  19.  
  20.     DarkRP.createEntity("Tier 1 Printer", {
  21.         ent = "tier_one_printer",
  22.         model = "models/props_c17/consolebox01a.mdl",
  23.         price = 10000,
  24.         max = 2,
  25.         category = "Basic Money Printers",
  26.         allowed = {TEAM_THIEF},
  27.         cmd = "buytier1"
  28.  
  29.     })
  30.  
  31.     DarkRP.createEntity("Tier 2 Printer", {
  32.         ent = "tier_two_printer",
  33.         model = "models/props_c17/consolebox01a.mdl",
  34.         price = 20000,
  35.         max = 2,
  36.         category = "Basic Money Printers",
  37.         cmd = "buytier2"
  38.     })
  39.  
  40.     DarkRP.createEntity("Tier 3 Printer", {
  41.         ent = "tier_three_printer",
  42.         model = "models/props_c17/consolebox01a.mdl",
  43.         price = 30000,
  44.         max = 1,
  45.         category = "Basic Money Printers",
  46.         cmd = "buytier3"
  47.     })
  48.  
  49.     DarkRP.createEntity("Bronze Printer", {
  50.         ent = "bronze_printer",
  51.         model = "models/props_c17/consolebox01a.mdl",
  52.         price = 40000,
  53.         max = 1,
  54.         category = "Vip Money Printers",
  55.         cmd = "buybronzeprinter"
  56.     })
  57.  
  58.     DarkRP.createEntity("Silver Printer", {
  59.         ent = "silver_printer",
  60.         model = "models/props_c17/consolebox01a.mdl",
  61.         price = 50000,
  62.         max = 1,
  63.         category = "Vip Money Printers",
  64.         cmd = "buysilverprinter"
  65.     })
  66.  
  67.     DarkRP.createEntity("Gold Printer", {
  68.         ent = "gold_printer",
  69.         model = "models/props_c17/consolebox01a.mdl",
  70.         price = 60000,
  71.         max = 1,
  72.         category = "Vip Money Printers",
  73.         cmd = "buygoldprinter"
  74.     })
  75.  
  76.     DarkRP.createEntity("Platinum Printer", {
  77.         ent = "platinum_printer",
  78.         model = "models/props_c17/consolebox01a.mdl",
  79.         price = 80000,
  80.         max = 1,
  81.         category = "Vip Money Printers",
  82.         cmd = "buyplatprinter"
  83.     })
  84.  
  85. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement