hello. I have download dark rp and it lets me spawn a money printer with every job.
i want to only be able to spawn one as a thief.
how can i go about doing this?
Go to the gamemodes>DarkRP>gamemode>addentities.lua
look for money printer code it should be this:
[CODE]AddEntity("Money printer", {
ent = "money_printer",
model = "models/props_c17/consolebox01a.mdl",
price = 1000,
max = 2,
cmd = "/buymoneyprinter"
})[/CODE]
replace that ^^^, with this one:
[CODE]AddEntity("Money printer", {
ent = "money_printer",
model = "models/props_c17/consolebox01a.mdl",
price = 1000,
max = 2,
cmd = "/buymoneyprinter"
allowed = TEAM_THIEF, TEAM_GUN
})[/CODE]
hope it works ! :)
Sorry, you need to Log In to post a reply to this thread.