Skip to content

A Clubbing script for QBCore allowing you to make multiple clubs around the map

Notifications You must be signed in to change notification settings

CptNoHand/qb-vanillaunicorn

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

27 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

QBCore Vanilla Unicorn Job

This is a Vanilla Unicorn Job designed exclusively for QBCore at the request of the community. This resource is simple, with the idea of feature requests and improvements being added in the future.

Requirements

Features

  • Completely Translatable
  • Fully commented
  • Almost everything is configureable
  • Stashes
  • Toggle Duty
  • Complete qb-target & qb-menu support
  • Supports invoicing players, via the /invoice ID Amount command
  • Boss Menu implemented allowing for hiring, firing and storage management

Upcoming

  • DJ Job support (I'm adding a DJ Job, I just haven't finished it)
  • Complete support for different types of clubs & bars (currently only supports the VU)
  • Completion of strippers, currently still a WIP

Setup

  1. Add the following into your qb-core > shared.lua, under the Items section:
-- Vanilla Unicorn
	['vodka'] 					 = {['name'] = 'vodka', 			  	  		['label'] = 'Vodka', 				['weight'] = 100, 		['type'] = 'item', 		['image'] = 'vodka.png', 			['unique'] = false, 	['useable'] = false, 	['shouldClose'] = true,   ['combinable'] = nil,   ['description'] = 'Ever been so drunk you start speaking Russian? This will do the trick'},
	['whiskey'] 					 = {['name'] = 'whiskey', 			  	  		['label'] = 'Whiskey', 				['weight'] = 100, 		['type'] = 'item', 		['image'] = 'whiskey.png', 			['unique'] = false, 	['useable'] = false, 	['shouldClose'] = true,   ['combinable'] = nil,   ['description'] = 'The fine mans drink, not something most people can afford'},
	['rum'] 					 = {['name'] = 'rum', 			  	  		['label'] = 'Rum', 				['weight'] = 100, 		['type'] = 'item', 		['image'] = 'whiskey.png', 			['unique'] = false, 	['useable'] = false, 	['shouldClose'] = true,   ['combinable'] = nil,   ['description'] = 'A beverage that seems to make you think you can fight anybody'},
	['cocacola'] 					 = {['name'] = 'cocacola', 			  	  		['label'] = 'CocaCola', 				['weight'] = 100, 		['type'] = 'item', 		['image'] = 'cocacola.png', 			['unique'] = false, 	['useable'] = false, 	['shouldClose'] = true,   ['combinable'] = nil,   ['description'] = 'Probably have some issues with your blood suger level'},
  1. Once added, add the job into your qb-core > shared.lua like so:
['vu'] = {
	label = 'Vanilla Unicorn',
	defaultDuty = true,
	grades = {
		['0'] = {
			name = 'Trainee',
			payment = 50
		},
		['1'] = {
			name = 'Employee',
			payment = 75
		},
		['2'] = {
			name = 'Management',
			isboss = true,
			payment = 100
		},
	},
},
  1. You'll also need to setup the boss menu for this job, to do so, go to qb-bossmenu > config.lua and add the following:
['vu'] = vector3(93.57, -1292.3, 29.27)

to the end of the file, just under the mechanic job

  1. That's pretty much it, enjoy utilising the VU!

Issues?

Having issues with the resource? Create an issue on the Github for support

About

A Clubbing script for QBCore allowing you to make multiple clubs around the map

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages