Advertisement
Guest User

Untitled

a guest
Nov 20th, 2018
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.77 KB | None | 0 0
  1. materials["Scrap_Metal"] = { Name = "Scrap Metal", cname = "item_scrap" }
  2.  
  3. recipesCategories["c_rifles"] = { Name = "Rifles", required_jobs = {TEAM_GUN, TEAM_CITIZEN} }
  4.  
  5. recipes["fas2_ak47"] = {
  6.  
  7. Name = "AK-47",
  8. desc = "The AK-47 uses rifle ammunition. Features Full auto only. High damage, but at the cost of high recoil and slower firerate.",
  9. time = 10, --SECONDS
  10. model = "models/weapons/w_rif_ak47.mdl",
  11. category = "c_rifles",
  12. drop_when_done = true, -- Drop = true -> item drops on top of the workbench when completed. Drop = false -> item is added to your inventory
  13. craft_amount = true,
  14. max_shipment = 10,
  15. ingredients = {
  16. Scrap_Metal = 5,
  17. Wood = 100
  18. },
  19. ButtonDist = 22,
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement