获取车牌列表

GetPlateByGtaPlate

函数功能:根据洛圣都车牌获取中国车牌列表
返回类型:table(中国车牌列表)
传入参数:

  1. plate (string) 车辆的车牌号

示例代码:

local vehicle  = GetVehiclePedIsIn(PlayerPedId(), false)
local gtaPlate = GetVehicleNumberPlateText(vehicle)
local plates   = exports.zerodream_vehplate:GetPlateByGtaPlate(gtaPlate)
if #plates > 0 then
    ESX.ShowNotification(string.format("车牌号:%s", plates[1]))
else
    ESX.ShowNotification("该车辆没有中国车牌")
end