Skip to content
This repository has been archived by the owner on Feb 14, 2022. It is now read-only.
William Plunkett Jr edited this page May 14, 2019 · 13 revisions

Welcome to the esx_advancedgarage wiki!

  • Here i will be Posting some of the Common Questions that we have.

1. Restarting the Script can cause Problems

  • It has been noted that Restarting this Script in-game can cause certain things in this script to break. No known fix for this.

2. When going into the Circle nothing pops up or its not working correctly

  • Make sure that you load the scripts in the Correct order. This Script should be started after esx_vehicleshop.

3. How to create a vehicle_names.lua

4. Vehicle Names showing up as NULL

  • Setup the vehicle_names.lua or set Config.UseVehicleNamesLua to false

5. Storing vehicles in Garage but can't pull Vehicles out of Garage or Impound.

(Says i don't Own any Vehicles)

6. Not able to Store 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)

7. Error ShowHelpNotification

(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)
Clone this wiki locally