Welcome to Velociti Entertainment Customs
Here at Velociti Entertainment Customs you will find all sorts of stuff that i have Created & Worked on over the past few Years.
Requests
If you would like to Request something that i should do please fill out the Form below. Once you have submitted the form please wait for a reply. Replies normally will be made 24-48 Hours after form is Submitted.
FiveM Scripts & Wiki
We do NOT support Essentialmode or Zap Hosting. They are both 100% trash.
ESX Advanced Garage
Allows Storing Ambulance, Police, Aircrafts, Boats, & Vehicles.
ESX Advanced Vehicle Shop
Allows Buying/Selling Ambulance, Police, Aircrafts, Boats, Cars, Trucks, & VIP Vehicles.
ESX Advanced Hospital
Allows players to Heal Themselves or get Plastic Surgery.
ESX Advanced Weapon Shop
Allows players to buy Multiple Licenses to access different Weapon Types.
ESX Advanced Fuel
Allows players to Fuel their Aircrafts, Boats, Cars, & Motorcycles.
ESX License Shop
Allows players to Buy Licenses if they already have the Permit Test Completed.
ESX Vehicle Spawner
Allows players to Spawn & De-Spawn Vehicles from a Marker.
We do NOT support Essentialmode or Zap Hosting. They are both 100% trash.
- Restarting any Scripts can cause the Scripts to Break.
- When going into the Marker nothing Happens.
- Make sure you have setup the Scripts in the Correct load order. Scripts need to be after their Dependencies.
- No Blips &/or Nothing is working.
- Make sure you edit the
config.lua
because by default everything is turned off.
- Make sure you edit the
- RegisterCommand Error
- You need to make sure you are using the latest
es_extended
.
- You need to make sure you are using the latest
Bugs/Questions
- There is a limit on how many Vehicles you can own before the Menu Breaks.
- Which is Roughly 36 Vehicles for Each Garage.
- There is the Ability to Duplicate Vehicles.
- The only real way to fix this it to remove the Impound Feature.
- In the meantime you can set how long someone must wait before being able to access the Impound in the
config.lua
- This may NOT work with OneSync. I don't plan on Supporting OneSync.
How to Create a Vehicle Names file aka Vehicle Names showing NULL
- Create a New file in your Addon Vehicles Folder called
vehicle_names.lua
-
- Add the following code to that
vehicle_names.lua
-
function AddTextEntry(key, value) Citizen.InvokeNative(GetHashKey("ADD_TEXT_ENTRY"), key, value) end Citizen.CreateThread(function() --Example: AddTextEntry('16charger', '2016 Dodge Charger') AddTextEntry('SPAWNNAME', 'VEHICLENAME') end)
-
- Change
SPAWNNAME
to the Spawn Name of the Vehicle & ChangeVEHICLENAME
to whatever you want. - In the
fxmanifest.lua
addclient_script 'vehicle_names.lua'
- If you have any more problems please check Here on the FiveM Forums.
Saying you don't own any Vehicles / Can't Pull Vehicles out of Garage/Impound
- Noted Here! or Take a look at the Vehicle Shop Fix.
- If you are using this with
esx_vehicleshop
you MUST do one of the following:- A. Delete your
owned_vehicle
Table & upload my esx_vehicleshop_fix.sql - B. Edit your
owned_vehicles
Table by editing the Columnjob
toNOT NULL
&DEFAULT to As Defined: civ
- A. Delete your
- Here is my
owned_vehicles
Table if you want to Compare:
Getting this to work with esx_property
- Go to server/main.lua of
esx_property
& do the following:- Under
TriggerClientEvent('esx_property:setPropertyOwned', xPlayer.source, name, true, rented)
- Add
xPlayer.triggerEvent('esx_advancedgarage:getPropertiesC')
- & Under
xPlayer.triggerEvent('esx_property:setPropertyOwned', name, false)
- Add
xPlayer.triggerEvent('esx_advancedgarage:getPropertiesC')
- Under
Changing multiple tables at once
Use UPDATE owned_vehicles SET job='civ' where job='';
How to add Items to your Shops.
- Open
esx_extraitems.sql
and go to INSERT INTOshops
. - On the ones marked
ExtraItemShop
change them to the Shop that you want. - Import the Modified
esx_extraitems.sql
into your Database.