Advertisement
Guest User

Untitled

a guest
Mar 24th, 2018
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.53 KB | None | 0 0
  1. -- Campo de Esmeralda
  2.  
  3.  
  4. {
  5. name="Campo de Esmeralda", -- menu name
  6. permissions = {"harvest.esmeralda"}, -- you can add permissions
  7. r=38,g=167,b=36, -- cor do menu
  8. max_units=200, -- unidades maximas do item
  9. units_per_minute=200, -- unidades que o transformador ganha de volta por minuto
  10. x=1118.4421386719,y=2189.0473632813,z=46.02225112915, -- pos
  11. radius=3.0, height=1.0, -- area
  12. recipes = { -- items do menu
  13. ["Minerar esmeralda"] = { -- action name
  14. description="Minerar pequenos cristais de esmeralda bruta.", -- action description
  15. in_money=0, -- money taken per unit
  16. out_money=0, -- money earned per unit
  17. reagents={
  18. ["picareta"] = 1
  19. },
  20. products={ -- items given per unit
  21. ["esmeraldabruta"] = 1
  22. }
  23. }
  24. }
  25. },
  26. -- PROCESSADOR DE ESMERALDA
  27. {
  28. name="Processador de Esmeralda", -- menu name
  29. permissions = {"process.esmeralda"}, -- you can add permissions
  30. r=38,g=167,b=36, -- cor do menu
  31. max_units=200, -- unidades maximas do item
  32. units_per_minute=200, -- unidades que o transformador ganha de volta por minuto
  33. x=-1602.8891601563,y=5205.255859375,z=4.310088634491, -- pos
  34. radius=3.0, height=1.0, -- area
  35. recipes = { -- items do menu
  36. ["Processar esmeralda"] = { -- action name
  37. description="Processar o minério de esmeralda.", -- action description
  38. in_money=0, -- money taken per unit
  39. out_money=0, -- money earned per unit
  40. reagents={ -- items taken per unit
  41. ["esmeraldabruta"] = 1
  42. },
  43. products={ -- items given per unit
  44. ["esmeraldaprocessada"] = 2
  45. }
  46. }
  47. }
  48. },
  49. -- VENDA DE ESMERALDA
  50. {
  51. name="Venda de Esmeralda", -- menu name
  52. permissions = {"sell.esmeralda"}, -- you can add permissions
  53. r=38,g=167,b=36, -- cor do menu
  54. max_units=200, -- unidades maximas do item
  55. units_per_minute=200, -- unidades que o transformador ganha de volta por minuto
  56. x=-1345.7403564453,y=-1080.5219726563,z=6.9380788803101, -- pos
  57. radius=3.0, height=1.0, -- area
  58. recipes = { -- items do menu
  59. ["Vender esmeralda"] = { -- action name
  60. description="Vender cristal de esmeralda.", -- action description
  61. in_money=0, -- money taken per unit
  62. out_money=0, -- money earned per unit
  63. reagents={ -- items taken per unit
  64. ["esmeraldaprocessada"] = 1
  65. },
  66. products={ -- items given per unit
  67. ["money"] = 90
  68. }
  69. }
  70. }
  71. },
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement