Garry's Mod
385 人が評価
DarkRP 2.5.0 Precious Printers V2.0
   
アワード
お気に入り
お気に入り
お気に入りから削除
Content Type: Addon
Addon Type: Gamemode
Addon Tags: Roleplay, Realism
ファイルサイズ
投稿日
更新日
2.653 KB
2013年9月8日 2時55分
2014年7月19日 0時53分
2 項目の変更履歴 ( 表示 )

サブスクライブしてダウンロード
DarkRP 2.5.0 Precious Printers V2.0

解説
--------------------------------------------
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 !
人気スレッド 全て表示 (1)
18
2019年4月10日 10時13分
Printer Ideas
Paulchartres
348 件のコメント
Nintendude 2024年5月24日 11時10分 
bro this is so outdated DO NOT USE MIGHT NOT WORK :steamthumbsdown:
RareHyperIon 2019年12月2日 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 2019年12月2日 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 2019年11月10日 12時12分 
How would you set the entity class as a printer ? So people can physgun them
Muscularhi 2019年7月22日 4時42分 
were do you paste the entity code?
Aku! 2019年1月26日 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 2018年3月30日 13時44分 
Haha nerd
$k1wifruit 2018年3月30日 13時37分 
i eat butt
Brickwall 2017年10月7日 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 2017年7月7日 19時25分 
why are the printers blowing up fix?