Skip to main content

Changelogs

v3.0.4

+ Readded SQL improvements
/ Fixed bug which affects slow running users/servers.
/ Fixed prefix issue.

Config Change:

One change made, which only affects non changed configs.

Old
vehicleType = 'motorcyle

New
vehicleType = 'motorcycle

Files Changed:

client/3dmenu.lua
client/editable.lua
client/main.lua
client/ox.lua
client/target.lua
server/main.lua
config.lua

v3.0.3

+ Class filtering for showroompoints.
/ Improved SQL performance.
/ Fixed oxMenu id issue.

Config Change:

With the addition of class filtering, an extra is available for each showroompoint. No new lines NEED to be added, only when wanting to use class filtering.

You can now filter a showroompoint with 2 filtersystems, using 1 of two or even both! To use this feature please add classes = {['classname'] = true}, beneath categories in the showroompoint you want to filter. It basicly works the same as categories. These 2 options can be used together to enhance your filtering. Have fun!

Files Changed:

client/3dmenu.lua
client/main.lua
client/ox.lua
client/target.lua
server/main.lua
config.lua

v3.0.2

+ Added Target system.
+ Added defaultmods as option in /op-v-changeveh.
+ Added label spaces support in /op-v-changeveh.
/ Fixed Debug message.
/ Fixed Vehicle spawning issue.
/ Fixed Vehicle not loading due to "slow" server.
- Removed Unused code.

Config Change:

Due to the target interaction system addition. Some changes to the config have been made.

Add this to _Language:

--[[Target]]
['targetopenMenu'] = 'Open Menu',
['targetopenMenuIcon'] = 'fas fa-bars-staggered',

Changes to Showroompoints:

Added targetZone Please take a look at the config of the new version and compare it to yours for more explanation.

Files Changed:

client/cmd.lua
client/main.lua
client/ox.lua
client/target.lua
server/cmd.lua
config.lua

v3.0.1

+ Added Ox_lib version check.
/ Fixed SQL file problem.
/ Fixed Job Whitelist System.
/ Fixed Menu bug after buying vehicle.
- Removed Certain files from migrating/ folder to avoid confusion.

Config Change:

Due to the job whitelist system issue fix the following settings need to be changed to minimize reconfiguring: per location ... .lSettings.sRestrictions Please compare the section with your old version.

Old

-- When whitelisted and blacklisted contain the same job no matter what grade unexpected results will happen.
jobsWhitelisted = {}, -- Make empty to disable
jobsBlacklisted = {}, -- Make empty to disable

New

-- {['jobname'] = mingrade}
jobsWhitelisted = false, -- Make false to disable
jobsBlacklisted = false, -- Make false to disable

Files Changed:

client/3dmenu.lua
client/main.lua
client/utils.lua
server/utils.lua
sql/op-vehshop.sql
config.lua