Guest User

Gemstone Printers Installation

a guest
Nov 22nd, 2013
896
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.49 KB | None | 0 0
  1. Workshop Gemstone Printers created by KoZ
  2. Steam: http://steamcommunity.com/id/drunkenkoz
  3. Github: https://github.com/dkoz/gsprinters/tree/beta
  4.  
  5. How to install:
  6.  
  7. Please note that the configuration files for DarkRP are located in darkrp/gamemode/config folder.
  8.  
  9. 1) Open your addentities.lua and place the following code into the bottom of the file;
  10.  
  11. DarkRP.createEntity("Topaz Printer", {
  12. ent = "topaz_money_printer",
  13. model = "models/props_c17/consolebox01a.mdl",
  14. price = 1000,
  15. max = 2,
  16. cmd = "buytopazprinter"
  17. })
  18.  
  19. DarkRP.createEntity("Amethyst Printer", {
  20. ent = "amethyst_money_printer",
  21. model = "models/props_c17/consolebox01a.mdl",
  22. price = 1500,
  23. max = 2,
  24. cmd = "buyamethystprinter"
  25. })
  26.  
  27. DarkRP.createEntity("Emerald Printer", {
  28. ent = "emerald_money_printer",
  29. model = "models/props_c17/consolebox01a.mdl",
  30. price = 2500,
  31. max = 2,
  32. cmd = "buyemeraldprinter"
  33. })
  34.  
  35. DarkRP.createEntity("Ruby Printer", {
  36. ent = "ruby_money_printer",
  37. model = "models/props_c17/consolebox01a.mdl",
  38. price = 5000,
  39. max = 2,
  40. cmd = "buyrubyprinter"
  41. })
  42.  
  43. DarkRP.createEntity("Sapphire Printer", {
  44. ent = "sapphire_money_printer",
  45. model = "models/props_c17/consolebox01a.mdl",
  46. price = 7500,
  47. max = 2,
  48. cmd = "buysapphireprinter"
  49. })
  50.  
  51. 2) Open your config.lua and place the following code into the bottom of the file;
  52.  
  53. GM.Config.topazprintamount = 10
  54. GM.Config.amethystprintamount = 15
  55. GM.Config.emeraldprintamount = 25
  56. GM.Config.rubyprintamount = 50
  57. GM.Config.sapphireprintamount = 75
Advertisement
Add Comment
Please, Sign In to add comment