local ffi = require("ffi")
function getPlateText(modelId)
local address = 0xB1F650 + (modelId - 400) * 0x308 + 0x28
local modelBase = ffi.cast("intptr_t**", address)[0][0]
return ffi.string(ffi.cast("const void*", modelBase + 0x10), 8)
end
if isCharInAnyCar(PLAYER_PED) then
print(getPlateText(getCarModel(storeCarCharIsInNoSave(PLAYER_PED))))
end