Garry's Mod

Garry's Mod

T Printer's -Easy to Use & Configure
 This topic has been pinned, so it's probably important
KingDoogan  [developer] 4 Dec, 2018 @ 10:06pm
DarkRP entities
DarkRP.createEntity("Normal Printer", {
ent = "ent_tprinter",
model = "models/props_c17/consolebox01a.mdl",
price = 847,
max = 2,
cmd = "buynormaltprinter"
})

DarkRP.createEntity("Gold Printer", {
ent = "ent_tprintergold",
model = "models/props_c17/consolebox01a.mdl",
price = 1500,
max = 2,
cmd = "buygoldtprinter"
})

DarkRP.createEntity("Premium Printer", {
ent = "ent_tprinterpremium",
model = "models/props_c17/consolebox01a.mdl",
price = 3000,
max = 2,
cmd = "buynormaltprinter"
})

DarkRP.createEntity("Printer Overclocker", {
ent = "ent_poverclock",
model = "models/props_lab/reciever01d.mdl",
price = 250,
max = 5,
cmd = "buyproverclock"
customCheck = function(ply) return CLIENT or
table.HasValue({"vip"}, ply:GetNWString("usergroup"))
end,
CustomCheckFailMsg = "VIP Only",
})