Garry's Mod

Garry's Mod

385 vurderinger
DarkRP 2.5.0 Precious Printers V2.0
   
Utmerkelse
Favoritt
Favoritter
Fjern som favoritt
Innholdstype: Tillegg
Tilleggstype: Spillmodus
Tilleggsetiketter: Rollespill, Realisme
Filstørrelse
Lagt ut
Oppdatert
2.653 KB
8. sep. 2013 kl. 2.55
19. juli 2014 kl. 0.53
2 endringslogger ( vis )

Abonner for å laste ned
DarkRP 2.5.0 Precious Printers V2.0

Beskrivelse
--------------------------------------------
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 !
Populære diskusjoner Vis alle (1)
18
10. apr. 2019 kl. 10.13
Printer Ideas
Paulchartres
348 kommentarer
Nintendude 24. mai 2024 kl. 11.10 
bro this is so outdated DO NOT USE MIGHT NOT WORK :steamthumbsdown:
RareHyperIon 2. des. 2019 kl. 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. des. 2019 kl. 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. nov. 2019 kl. 12.12 
How would you set the entity class as a printer ? So people can physgun them
Muscularhi 22. juli 2019 kl. 4.42 
were do you paste the entity code?
Aku! 26. jan. 2019 kl. 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. mars 2018 kl. 13.44 
Haha nerd
$k1wifruit 30. mars 2018 kl. 13.37 
i eat butt
Brickwall 7. okt. 2017 kl. 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. juli 2017 kl. 19.25 
why are the printers blowing up fix?