QBCore
Download Resource
You will receive the script in keymaster.fivem.net profile, after this click in blue "download" button.
After download, put the script in your server files.
Remeber:
You need to be logged with the same cfx.re account you used to buy in my tebex store.
Dependencies Part
qb-menu or custom one (ESX uses default menu, no need of this)
input script (provided)
Download all the scripts by clicking on their respective names, put them in the server files and start server.cfg
Inventory Setup
Go to qb-core, shared, items.lua, replace phone item line to this ones:
['phone'] = {['name']='phone',['label']='Phone',['weight']=700,['type']='item',['image']='phone.png',['unique']=true,['useable']=true,['shouldClose']=true,['combinable']=nil,['description']='Neat phone ya got there'},
['phone_white']={['name']='phone_white',['label']='White Phone',['weight']=700,['type']='item',['image']='phone_white.png',['unique']=true,['useable']=true,['shouldClose']=true,['combinable']=nil,['description']='Neat white phone ya got there'},
['phone_gold']={['name']='phone_gold',['label']='Gold Phone',['weight']=700,['type']='item',['image']='phone_gold.png',['unique']=true,['useable']=true,['shouldClose']=true,['combinable']=nil,['description']='Neat gold phone ya got there'},
['phone_red']={['name']='phone_red',['label']='Red Phone',['weight']=700,['type']='item',['image']='phone_red.png',['unique']=true,['useable']=true,['shouldClose']=true,['combinable']=nil,['description']='Neat red phone ya got there'},
['phone_blue']={['name']='phone_blue',['label']='Blue Phone',['weight']=700,['type']='item',['image']='phone_blue.png',['unique']=true,['useable']=true,['shouldClose']=true,['combinable']=nil,['description']='Neat blue phone ya got there'},
['phone_green']={['name']='phone_green',['label']='Green Phone',['weight']=700,['type']='item',['image']='phone_green.png',['unique']=true,['useable']=true,['shouldClose']=true,['combinable']=nil,['description']='Neat green phone ya got there'},
['phone_pink']={['name']='phone_pink',['label']='Pink Phone',['weight']=700,['type']='item',['image']='phone_pink.png',['unique']=true,['useable']=true,['shouldClose']=true,['combinable']=nil,['description']='Neat pink phone ya got there'},
['phone_green_light']={['name']='phone_greenLight',['label']='Green Light Phone',['weight']=700,['type']='item',['image']='phone_greenLight.png',['unique']=true,['useable']=true,['shouldClose']=true,['combinable']=nil,['description']='Neat green light phone ya got there'},
['powerbank'] = {['name'] = 'powerbank', Go to qb-core, shared, items.lua, replace phone item line to this ones:
casinochips = { name = 'casinochips', label = 'Casino Chips', weight = 1, type = 'item', image = 'casinochips.png', unique = false, useable = false, shouldClose = false, combinable = nil, description = 'Casino Chips' },
casino_member = { name = 'casino_member', label = 'Casino Member', weight = 600, type = 'item', image = 'casino_member.png', unique = false, useable = false, shouldClose = false, combinable = nil, description = 'A good membership' },
casino_vip = { name = 'casino_vip', label = 'Casino VIP', weight = 800, type = 'item', image = 'casino_vip.png', unique = true, useable = false, shouldClose = true, combinable = nil, description = 'A fantastic membership' },Go to ox_inventory > data > items.lua, add this ones:
["casinochips"] = {
label = "Casino Chips",
weight = 1,
stack = true,
close = true,
},
["casino_member"] = {
label = "Casino Member",
weight = 1,
stack = true,
close = true,
},
["casino_vip"] = {
label = "Casino VIP",
weight = 1,
stack = true,
close = true,
},All good. As you can see, this is more than easy 🥞
Last updated