This repository has been archived by the owner on Feb 14, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 73
Home
William Plunkett Jr edited this page May 14, 2019
·
13 revisions
- Here i will be Posting some of the Common Questions that we have.
- It has been noted that Restarting this Script in-game can cause certain things in this script to break. No known fix for this.
- Make sure that you load the scripts in the Correct order. This Script should be started after esx_vehicleshop.
- Setup the vehicle_names.lua or set Config.UseVehicleNamesLua to false
(Says i don't Own any Vehicles)
(This is a weird one as this doesn't work for me but works for some others)
- Noted Here
- Go into server/main.lua & change
- Delete or Comment out lines 6-18
- Add the code below.
AddEventHandler('onMySQLReady', function()
MySQL.Sync.execute("UPDATE owned_vehicles SET stored=true WHERE stored=false", {})
end)
(Another weird one that works for me but not for some others)
- Noted Here
- Some people have problems with ESX.ShowHelpNotification(CurrentActionMsg)
- You can either Comment out that line or Replace that line with the fix below
SetTextComponentFormat('STRING')
AddTextComponentString(CurrentActionMsg)
DisplayHelpTextFromStringLabel(0, 0, 1, -1)