Hi there,
So currently I’m trying to set up the garages in vrp to work as follow:
Before the player is allowed to enter the buy menu a check is carried out to make sure that the “garage type” is equal to the “job”, and if so then allow the user to enter the buy menu.
Img 1: Here is where I’m trying to add something to check
“basic_garages.lua” code:
-- a basic garage implementation-- vehicle dbMySQL.createCommand("vRP/vehi - Pastebin.com
Img 2: is where the garage types are listed

“garages.lua” code: local cfg = {}-- define garage types with their associated vehicles-- (veh - Pastebin.com
img 3: is where the jobs are listed

“groups.lua” code: local cfg = {}-- define each group with a set of permissions-- _config p - Pastebin.com
If anyone could help me edit this that would be much appreciated, I’ve been working on this for roughly 2 weeks now trying to find a way to implement this, but finally decided to ask for some much-needed help.
Take a look to Dunko’s vRP modification, I think that feature is included in it.
Ven0m
3
It’s not included in Dunko.
If you haven’t figured this out already:
before
menu[lang.garage.buy.title()] = {function(player,choice)
add
if group == "UBER" then
and put an end after this line
end,lang.garage.buy.description()}