Not having the server convars added to the server.cfg was causing issues for some users
it should have worked, but this forces things to gta if you don't have any values set for them anywhere
I've added fallbacks to "gta" settings to hopefully stop fivem errors
Currently if you still have the old qb-inventory or a css edit it would require you to manually edit the starter.lua
```lua
QBInvNew = true
```
I'm testing a change to grab the version and return true of false if its above `2.0.0` (200)
```lua
local qbInvVer = GetResourceMetadata(Exports.QBInv, 'version', nil):gsub("%.", "")
QBInvNew = tonumber(qbInvVer) >= 200
```
If this causes issue's I'll revert this