Just wana say thx for sharing your work. I tested all on qbcore and all is working perfect. I add some cars also and tested and its working fine. Ty for sharing this.
It works great for me, but I would like to know where I can enter the option to register the key. I use the script ‘esx_RufiCarKeys’ and it tells me that it adds the function of registering the key when buying the vehicle.
I would also like to add that when I built a test vehicle, I registered a ‘TEST’ plate for my key script to allow you to start the vehicle.
Is it possible to change the way of receiving the plate? when buying a vehicle. for example (63WAS810) and not (AHE 234) to register it without a space in the middle?
in next update maybe i will add a config for car keys script
about the plate the old version of plate system are like that.
but a lot of request to use a format like ABC 123 , so i have to implement it like that.
you can messed up with the
line 273 server.lua
function GenPlate()
local plate = LetterRand()..' '..NumRand()
if temp[plate] == nil then
return plate
end
Wait(10)
print(plate)
return GenPlate()
end