Gemstone Printers Installation


SUBMITTED BY: Guest

DATE: Nov. 22, 2013, 9:14 p.m.

FORMAT: Text only

SIZE: 1.7 kB

HITS: 914

  1. How to install:
  2. Please note that the configuration files for DarkRP are located in darkrp/gamemode/config folder.
  3. 1) Open your addentities.lua and place the following code into the bottom of the file;
  4. DarkRP.createEntity("Topaz Printer", {
  5. ent = "topaz_money_printer",
  6. model = "models/props_c17/consolebox01a.mdl",
  7. price = 1000,
  8. max = 2,
  9. cmd = "buytopazprinter"
  10. })
  11. DarkRP.createEntity("Amethyst Printer", {
  12. ent = "amethyst_money_printer",
  13. model = "models/props_c17/consolebox01a.mdl",
  14. price = 1500,
  15. max = 2,
  16. cmd = "buyamethystprinter"
  17. })
  18. DarkRP.createEntity("Emerald Printer", {
  19. ent = "emerald_money_printer",
  20. model = "models/props_c17/consolebox01a.mdl",
  21. price = 2500,
  22. max = 2,
  23. cmd = "buyemeraldprinter"
  24. })
  25. DarkRP.createEntity("Ruby Printer", {
  26. ent = "ruby_money_printer",
  27. model = "models/props_c17/consolebox01a.mdl",
  28. price = 5000,
  29. max = 2,
  30. cmd = "buyrubyprinter"
  31. })
  32. DarkRP.createEntity("Sapphire Printer", {
  33. ent = "sapphire_money_printer",
  34. model = "models/props_c17/consolebox01a.mdl",
  35. price = 7500,
  36. max = 2,
  37. cmd = "buysapphireprinter"
  38. })
  39. 2) Open your config.lua and place the following code into the bottom of the file;
  40. GM.Config.topazprintamount = 10
  41. GM.Config.amethystprintamount = 15
  42. GM.Config.emeraldprintamount = 25
  43. GM.Config.rubyprintamount = 50
  44. GM.Config.sapphireprintamount = 75

comments powered by Disqus