Advertisement
Guest User

autorun_circle.lua

a guest
Nov 17th, 2017
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.06 KB | None | 0 0
  1. timer.Simple(4, function()
  2.  
  3. DarkRP.createEntity("Circle Printer", {
  4. ent = "pro_printer",
  5. model = "models/props_c17/consolebox01a.mdl",
  6. price = 2000,
  7. max = 1,
  8. cmd = "buypro"
  9. })
  10.  
  11. DarkRP.createEntity("Circle Printer", {
  12. ent = "premium_printer",
  13. model = "models/props_c17/consolebox01a.mdl",
  14. price = 2000,
  15. max = 1,
  16. cmd = "buypremium"
  17. })
  18.  
  19. DarkRP.createEntity("Circle Printer", {
  20. ent = "premium_printer",
  21. model = "models/props_c17/consolebox01a.mdl",
  22. price = 2000,
  23. max = 1,
  24. cmd = "buypremium"
  25. })
  26.  
  27. DarkRP.createEntity("Circle Printer", {
  28. ent = "vip_printer",
  29. model = "models/props_c17/consolebox01a.mdl",
  30. price = 2000,
  31. max = 1,
  32. cmd = "buyvip"
  33. customCheck = function(ply) return
  34. table.HasValue({"vip", "donator", "Owner"}, ply:GetNWString("usergroup"))
  35. end,
  36. CustomCheckFailMsg = "This is a vip printer",
  37. })
  38.  
  39.  
  40. DarkRP.createEntity("Circle Printer", {
  41. ent = "gold_printer",
  42. model = "models/props_c17/consolebox01a.mdl",
  43. price = 2000,
  44. max = 1,
  45. cmd = "buygold"
  46. })
  47.  
  48. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement