Garry's Mod

Garry's Mod

385 arvostelua
DarkRP 2.5.0 Precious Printers V2.0
   
Palkinto
Lisää suosikkeihin
Lisätty suosikkeihin
Poista suosikeista
Content Type: Addon
Addon Type: Gamemode
Addon Tags: Roleplay, Realism
Tiedostokoko
Julkaistu
Päivitetty
2.653 KB
8.9.2013 klo 2.55
19.7.2014 klo 0.53
2 muutosilmoitusta ( näytä )

Tilaa ladataksesi
DarkRP 2.5.0 Precious Printers V2.0

Kuvaus
--------------------------------------------
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 !
Suositut keskustelut Näytä kaikki (1)
18
10.4.2019 klo 10.13
Printer Ideas
Paulchartres
348 kommenttia
Nintendude 24.5.2024 klo 11.10 
bro this is so outdated DO NOT USE MIGHT NOT WORK :steamthumbsdown:
RareHyperIon 2.12.2019 klo 7.12 
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.12.2019 klo 6.54 
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.11.2019 klo 12.12 
How would you set the entity class as a printer ? So people can physgun them
Muscularhi 22.7.2019 klo 4.42 
were do you paste the entity code?
Aku! 26.1.2019 klo 5.27 
is there any way to change the colours, designs, and the names that show up in game, of the printers models themselves?
Vincentmario 30.3.2018 klo 13.44 
Haha nerd
$k1wifruit 30.3.2018 klo 13.37 
i eat butt
Brickwall 7.10.2017 klo 12.26 
Just reworked V3.1. http://gtm.steamproxy.vip/sharedfiles/filedetails/?id=1161418109
A lot simpler and newer, but still based off this good addon!
Hotdog 7 7.7.2017 klo 19.25 
why are the printers blowing up fix?