Garry's Mod

Garry's Mod

385 ratings
DarkRP 2.5.0 Precious Printers V2.0
   
Award
Favorite
Favorited
Unfavorite
Content Type: Addon
Addon Type: Gamemode
Addon Tags: Roleplay, Realism
File Size
Posted
Updated
2.653 KB
8 Sep, 2013 @ 2:55am
19 Jul, 2014 @ 12:53am
2 Change Notes ( view )

Subscribe to download
DarkRP 2.5.0 Precious Printers V2.0

Description
--------------------------------------------
NOTE

These only work for darkRP 2.5.0 ! It's a NEW version !
Credit to TCWilliam and Koz (idk why they harassed me for it, but..)

And also, as Xavier (a Steam user) pointed it out, if you're using a new version (like 2.6) don't forget to change the entities code so that AddEntity becomes DarkRP.createEntity !
--------------------------------------------

EDIT: VERSION 2 IS OUT :D ! Five more printers ! And more to come...

Hey everyone !

This is my second addon, the first was another Money Printer addon that Koz asked me to take down so I made this one ! First of all, there's a code down here ↓, YOU ABSOLUTELY NEED IT if you want to make the printers work ! Just copy/paste the code into the DarkRP Modfications/lua/darkrp_config/settings.lua file, under mprintamount value. Also, here are the entities names :

quartz_money_printer
opal_money_printer
aquamarine_money_printer
malachite_money_printer
beryl_money_printer
garnet_money_printer
tanzanite_money_printer
chrome_money_printer
obsidian_money_printer
diamond_money_printer
musgravite_money_printer
jeremejevite_money_printer
grandidierite_money_printer
redberyl_money_printer
lava_money_printer

Now, the code to put in settings (Addons/DarkRP Modifications/lua/darkrp_config/settings.lua):

-- quartzprintamount - Value of the money printed by the quartz printer.
GM.Config.quartzprintamount = 10
-- opalprintamount - Value of the money printed by the opal printer.
GM.Config.opalprintamount = 15
-- aquamarineprintamount - Value of the money printed by the aquamarine printer.
GM.Config.aquamarineprintamount = 20
-- malachiteprintamount - Value of the money printed by the malachite printer.
GM.Config.malachiteprintamount = 25
-- berylprintamount - Value of the money printed by the beryl printer.
GM.Config.berylprintamount = 30
-- garnetprintamount - Value of the money printed by the garnet printer.
GM.Config.garnetprintamount = 35
-- tanzaniteprintamount - Value of the money printed by the tanzanite printer.
GM.Config.tanzaniteprintamount = 40
-- chromeprintamount - Value of the money printed by the chrome printer.
GM.Config.chromeprintamount = 45
-- obsidianprintamount - Value of the money printed by the obsidian printer.
GM.Config.obsidianprintamount = 50
-- diamondprintamount - Value of the money printed by the diamond printer.
GM.Config.diamondprintamount = 55
-- musgraviteprintamount - Value of the money printed by the musgravite printer.
GM.Config.musgraviteprintamount = 60
-- jeremejeviteprintamount - Value of the money printed by the jeremejevite printer.
GM.Config.jeremejeviteprintamount = 65
-- grandidieriteprintamount - Value of the money printed by the grandidierite printer.
GM.Config.grandidieriteprintamount = 70
-- redberylprintamount - Value of the money printed by the red beryl printer.
GM.Config.redberylprintamount = 75
-- lavaprintamount - Value of the money printed by the lava printer.
GM.Config.lavaprintamount = 80

And, yes another thing that a lot of peeps requested, the ENTITIES COOOODE :D :

AddEntity("Quartz Printer", {
ent = "quartz_money_printer",
model = "models/props_c17/consolebox05a.mdl",
price = 1000,
max = 2,
cmd = "buyquartzprinter",
})

AddEntity("Opal Printer", {
ent = "opal_money_printer",
model = "models/props_c17/consolebox05a.mdl",
price = 1500,
max = 2,
cmd = "buyopalprinter",
})

AddEntity("Aquamarine Printer", {
ent = "aquamarine_money_printer",
model = "models/props_c17/consolebox05a.mdl",
price = 2000,
max = 2,
cmd = "buyaquaprinter",
})

AddEntity("Malachite Printer", {
ent = "malachite_money_printer",
model = "models/props_c17/consolebox05a.mdl",
price = 2500,
max = 2,
cmd = "buymalachiteprinter",
})

AddEntity("Beryl Printer", {
ent = "beryl_money_printer",
model = "models/props_c17/consolebox05a.mdl",
price = 3000,
max = 2,
cmd = "buyberylprinter",
})

AddEntity("Garnet Printer", {
ent = "garnet_money_printer",
model = "models/props_c17/consolebox05a.mdl",
price = 3500,
max = 2,
cmd = "buygarnetprinter",
})

AddEntity("Tanzanite Printer", {
ent = "tanzanite_money_printer",
model = "models/props_c17/consolebox05a.mdl",
price = 4000,
max = 2,
cmd = "buytanzaniteprinter",
})

AddEntity("Chrome Printer", {
ent = "chrome_money_printer",
model = "models/props_c17/consolebox05a.mdl",
price = 4500,
max = 2,
cmd = "buychromeprinter",
})

AddEntity("Obsidian Printer", {
ent = "obsidian_money_printer",
model = "models/props_c17/consolebox05a.mdl",
price = 5000,
max = 2,
cmd = "buyobsidianprinter",
})

AddEntity("Diamond Printer", {
ent = "diamond_money_printer",
model = "models/props_c17/consolebox05a.mdl",
price = 5500,
max = 2,
cmd = "buydiamondprinter",
})

AddEntity("Musgravite Printer", {
ent = "musgravite_money_printer",
model = "models/props_c17/consolebox05a.mdl",
price = 6000,
max = 2,
cmd = "buymusgraviteprinter",
})

AddEntity("Jeremejevite Printer", {
ent = "jeremejevite_money_printer",
model = "models/props_c17/consolebox05a.mdl",
price = 6500,
max = 2,
cmd = "buyjeremejeviteprinter",
})

AddEntity("Grandidierite Printer", {
ent = "grandidierite_money_printer",
model = "models/props_c17/consolebox05a.mdl",
price = 7000,
max = 2,
cmd = "buygrandidieriteprinter",
})

AddEntity("Red Beryl Printer", {
ent = "redberyl_money_printer",
model = "models/props_c17/consolebox05a.mdl",
price = 7500,
max = 2,
cmd = "buyredberylprinter",
})

AddEntity("Lava Printer", {
ent = "lava_money_printer",
model = "models/props_c17/consolebox05a.mdl",
price = 8000,
max = 2,
cmd = "buylavaprinter",
})

And you're done !

Enjoy !
Popular Discussions View All (1)
18
10 Apr, 2019 @ 10:13am
Printer Ideas
Paulchartres
348 Comments
Nintendude 24 May, 2024 @ 11:10am 
bro this is so outdated DO NOT USE MIGHT NOT WORK :steamthumbsdown:
RareHyperIon 2 Dec, 2019 @ 7:12am 
models/props_c17/consolebox05a.mdl
where would that be? because i did not see that any where i might not have it and thats prob why :(
RareHyperIon 2 Dec, 2019 @ 6:54am 
the addon did not work i click buy and its not giving me it its just doing nothing i even done /buylavaprinter and it did not work any help?
Synk 10 Nov, 2019 @ 12:12pm 
How would you set the entity class as a printer ? So people can physgun them
Muscularhi 22 Jul, 2019 @ 4:42am 
were do you paste the entity code?
Humble Bloodpoint Farmer 26 Jan, 2019 @ 5:27am 
is there any way to change the colours, designs, and the names that show up in game, of the printers models themselves?
Vincentmario 30 Mar, 2018 @ 1:44pm 
Haha nerd
$k1wifruit 30 Mar, 2018 @ 1:37pm 
i eat butt
Brickwall 7 Oct, 2017 @ 12:26pm 
Just reworked V3.1. https://steamhost.cn/steamcommunity_com/sharedfiles/filedetails/?id=1161418109
A lot simpler and newer, but still based off this good addon!
Hotdog 7 7 Jul, 2017 @ 7:25pm 
why are the printers blowing up fix?