Advertisement
Guest User

FA:S Attatchments

a guest
Jun 19th, 2014
5,062
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 3.30 KB | None | 0 0
  1.  
  2. DarkRP.createEntity("Acog Scope (Sight) ", {
  3.         ent = "fas2_att_acog",
  4.         model = "models/Items/BoxMRounds.mdl",
  5.         price = 1000,
  6.         max = 2,
  7.         cmd = "buyacog",
  8. })
  9.  
  10. DarkRP.createEntity("ECLAN C79 (Sight)", {
  11.         ent = "fas2_att_c79",
  12.         model = "models/Items/BoxMRounds.mdl",
  13.         price = 1000,
  14.         max = 2,
  15.         cmd = "buyeclan",
  16. })
  17.  
  18. DarkRP.createEntity("Comp M4 (Sight)", {
  19.         ent = "fas2_att_compm4",
  20.         model = "models/Items/BoxMRounds.mdl",
  21.         price = 1000,
  22.         max = 2,
  23.         cmd = "buycompm4",
  24. })
  25.  
  26. DarkRP.createEntity("EO Tech (Sight)", {
  27.         ent = "fas2_att_eotech",
  28.         model = "models/Items/BoxMRounds.mdl",
  29.         price = 1000,
  30.         max = 2,
  31.         cmd = "buyeotech",
  32. })
  33.  
  34. DarkRP.createEntity("Fore-Grip (Grip)", {
  35.         ent = "fas2_att_foregrip",
  36.         model = "models/Items/BoxMRounds.mdl",
  37.         price = 1000,
  38.         max = 2,
  39.         cmd = "buygrip",
  40. })
  41.  
  42. DarkRP.createEntity("Harris Bipod (Bi-Pod)", {
  43.         ent = "fas2_att_harrisbipod",
  44.         model = "models/Items/BoxMRounds.mdl",
  45.         price = 1000,
  46.         max = 2,
  47.         cmd = "buybipod",
  48. })
  49.  
  50. DarkRP.createEntity("Leupold MK4 (Sight)", {
  51.         ent = "fas2_att_leupold",
  52.         model = "models/Items/BoxMRounds.mdl",
  53.         price = 1000,
  54.         max = 2,
  55.         cmd = "buyleupold",
  56. })
  57.  
  58. DarkRP.createEntity("M21 20 Round Mag (Extended Magazine)", {
  59.         ent = "fas2_att_m2120mag",
  60.         model = "models/Items/BoxMRounds.mdl",
  61.         price = 1000,
  62.         max = 2,
  63.         cmd = "buym21",
  64. })
  65.  
  66. DarkRP.createEntity("MP5k 30 Round Mag (Extended Magazine)", {
  67.         ent = "fas2_att_mp5k30mag",
  68.         model = "models/Items/BoxMRounds.mdl",
  69.         price = 1000,
  70.         max = 2,
  71.         cmd = "buymp5k30mag",
  72. })
  73.  
  74. DarkRP.createEntity("PSO-1 (Sight) ", {
  75.         ent = "fas2_att_pso1",
  76.         model = "models/Items/BoxMRounds.mdl",
  77.         price = 1000,
  78.         max = 2,
  79.         cmd = "buypso1",
  80. })
  81.  
  82. DarkRP.createEntity("SG55 30 Round Mag (Extended Magazine)", {
  83.         ent = "fas2_att_sg55x30mag",
  84.         model = "models/Items/BoxMRounds.mdl",
  85.         price = 1000,
  86.         max = 2,
  87.         cmd = "buysg55mag",
  88. })
  89.  
  90. DarkRP.createEntity("SKS 20 Round Mag (Extended Magazine)", {
  91.         ent = "fas2_att_sks20mag",
  92.         model = "models/Items/BoxMRounds.mdl",
  93.         price = 1000,
  94.         max = 2,
  95.         cmd = "buysks20mag",
  96. })
  97.  
  98. DarkRP.createEntity("SKS 30 Round Mag (Extended Magazine)", {
  99.         ent = "fas2_att_sks30mag",
  100.         model = "models/Items/BoxMRounds.mdl",
  101.         price = 1000,
  102.         max = 2,
  103.         cmd = "buysks30mag",
  104. })
  105.  
  106. DarkRP.createEntity("Suppressor (Attatchment)", {
  107.         ent = "fas2_att_suppressor",
  108.         model = "models/Items/BoxMRounds.mdl",
  109.         price = 1000,
  110.         max = 2,
  111.         cmd = "buysuppressor",
  112. })
  113.  
  114. DarkRP.createEntity("Tritium Sights (Pistol Iron Sights)", {
  115.         ent = "fas2_att_tritiumsights",
  116.         model = "models/Items/BoxMRounds.mdl",
  117.         price = 1000,
  118.         max = 2,
  119.         cmd = "buytrit",
  120. })
  121.  
  122. DarkRP.createEntity("Wooden Stock (UZI Only)", {
  123.         ent = "fas2_att_uziwoodenstock",
  124.         model = "models/Items/BoxMRounds.mdl",
  125.         price = 1000,
  126.         max = 2,
  127.         cmd = "buystock",
  128. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement