Advertisement
supinus

dzdzzd

Apr 3rd, 2025
441
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 42.85 KB | Gaming | 0 0
  1. ac.log("Police script")
  2.  
  3. local sim = ac.getSim()
  4. local car = ac.getCar(0)
  5. local valideCar = {"audi_rs3_2022_LMC", "bmw_m340i_Police_HighSpeed", "police_r34_tiresarpi"}
  6. local carID = ac.getCarID(0)
  7.  
  8. local windowWidth = sim.windowWidth
  9. local windowHeight = sim.windowHeight
  10. local settingsOpen = false
  11. local arrestLogsOpen = false
  12. local camerasOpen = false
  13.  
  14. local cspVersion = ac.getPatchVersionCode()
  15. local cspMinVersion = 2144
  16. local fontMultiplier = windowHeight/1440
  17.  
  18. local firstload = true
  19. local cspAboveP218 = cspVersion >= 2363
  20. ac.log("Police script")
  21. if not(carID == valideCar[1] or carID == valideCar[2] or carID == valideCar[3]) or cspVersion < cspMinVersion then return end
  22.  
  23. local msgArrest = {
  24.     msg = {"`NAME` has been arrested for Speeding. The individual was driving a `CAR`.",
  25.     "We have apprehended `NAME` for Speeding. The suspect was behind the wheel of a `CAR`.",
  26.     "The driver of a `CAR`, identified as `NAME`, has been arrested for Speeding.",
  27.     "`NAME` has been taken into custody for Illegal Racing. The suspect was driving a `CAR`.",
  28.     "We have successfully apprehended `NAME` for Illegal Racing. The individual was operating a `CAR`.",
  29.     "The driver of a `CAR`, identified as `NAME`, has been arrested for Illegal Racing.",
  30.     "`NAME` has been apprehended for Speeding. The suspect was operating a `CAR` at the time of the arrest.",
  31.     "We have successfully detained `NAME` for Illegal Racing. The individual was driving a `CAR`.",
  32.     "`NAME` driving a `CAR` has been arrested for Speeding",
  33.     "`NAME` driving a `CAR` has been arrested for Illegal Racing."}
  34. }
  35.  
  36. local msgLost = {
  37.     msg = {"We've lost sight of the suspect. The vehicle involved is described as a `CAR` driven by `NAME`.",
  38.     "Attention all units, we have lost visual contact with the suspect. The vehicle involved is a `CAR` driven by `NAME`.",
  39.     "We have temporarily lost track of the suspect. The vehicle description is a `CAR` with `NAME` as the driver.",
  40.     "Visual contact with the suspect has been lost. The suspect is driving a `CAR` and identified as `NAME`.",
  41.     "We have lost the suspect's visual trail. The vehicle in question is described as a `CAR` driven by `NAME`.",
  42.     "Suspect have been lost, Vehicle Description:`CAR` driven by `NAME`",
  43.     "Visual contact with the suspect has been lost. The suspect is driving a `CAR` and identified as `NAME`.",
  44.     "We have lost the suspect's visual trail. The vehicle in question is described as a `CAR` driven by `NAME`.",}
  45. }
  46.  
  47. local msgEngage = {
  48.     msg = {"Control! I am engaging on a `CAR` traveling at `SPEED`","Pursuit in progress! I am chasing a `CAR` exceeding `SPEED`","Control, be advised! Pursuit is active on a `CAR` driving over `SPEED`","Attention! Pursuit initiated! Im following a `CAR` going above `SPEED`","Pursuit engaged! `CAR` driving at a high rate of speed over `SPEED`","Attention all units, we have a pursuit in progress! Suspect driving a `CAR` exceeding `SPEED`","Attention units! We have a suspect fleeing in a `CAR` at high speed, pursuing now at `SPEED`","Engaging on a high-speed chase! Suspect driving a `CAR` exceeding `SPEED`!","Attention all units! we have a pursuit in progress! Suspect driving a `CAR` exceeding `SPEED`","High-speed chase underway, suspect driving `CAR` over `SPEED`","Control, `CAR` exceeding `SPEED`, pursuit active.","Engaging on a `CAR` exceeding `SPEED`, pursuit initiated."}
  49. }
  50.  
  51. ------------------------------------------------------------------------- JSON Utils -------------------------------------------------------------------------
  52.  
  53. local json = {}
  54.  
  55. -- Internal functions.
  56.  
  57. local function kind_of(obj)
  58.   if type(obj) ~= 'table' then return type(obj) end
  59.   local i = 1
  60.   for _ in pairs(obj) do
  61.     if obj[i] ~= nil then i = i + 1 else return 'table' end
  62.   end
  63.   if i == 1 then return 'table' else return 'array' end
  64. end
  65.  
  66. local function escape_str(s)
  67.   local in_char  = {'\\', '"', '/', '\b', '\f', '\n', '\r', '\t'}
  68.   local out_char = {'\\', '"', '/',  'b',  'f',  'n',  'r',  't'}
  69.   for i, c in ipairs(in_char) do
  70.     s = s:gsub(c, '\\' .. out_char[i])
  71.   end
  72.   return s
  73. end
  74.  
  75. -- Returns pos, did_find; there are two cases:
  76. -- 1. Delimiter found: pos = pos after leading space + delim; did_find = true.
  77. -- 2. Delimiter not found: pos = pos after leading space;     did_find = false.
  78. -- This throws an error if err_if_missing is true and the delim is not found.
  79. local function skip_delim(str, pos, delim, err_if_missing)
  80.   pos = pos + #str:match('^%s*', pos)
  81.   if str:sub(pos, pos) ~= delim then
  82.     if err_if_missing then
  83.       error('Expected ' .. delim .. ' near position ' .. pos)
  84.     end
  85.     return pos, false
  86.   end
  87.   return pos + 1, true
  88. end
  89.  
  90. -- Expects the given pos to be the first character after the opening quote.
  91. -- Returns val, pos; the returned pos is after the closing quote character.
  92. local function parse_str_val(str, pos, val)
  93.   val = val or ''
  94.   local early_end_error = 'End of input found while parsing string.'
  95.   if pos > #str then error(early_end_error) end
  96.   local c = str:sub(pos, pos)
  97.   if c == '"'  then return val, pos + 1 end
  98.   if c ~= '\\' then return parse_str_val(str, pos + 1, val .. c) end
  99.   -- We must have a \ character.
  100.   local esc_map = {b = '\b', f = '\f', n = '\n', r = '\r', t = '\t'}
  101.   local nextc = str:sub(pos + 1, pos + 1)
  102.   if not nextc then error(early_end_error) end
  103.   return parse_str_val(str, pos + 2, val .. (esc_map[nextc] or nextc))
  104. end
  105.  
  106. -- Returns val, pos; the returned pos is after the number's final character.
  107. local function parse_num_val(str, pos)
  108.   local num_str = str:match('^-?%d+%.?%d*[eE]?[+-]?%d*', pos)
  109.   local val = tonumber(num_str)
  110.   if not val then error('Error parsing number at position ' .. pos .. '.') end
  111.   return val, pos + #num_str
  112. end
  113.  
  114.  
  115. -- Public values and functions.
  116.  
  117. function json.stringify(obj, as_key)
  118.   local s = {}  -- We'll build the string as an array of strings to be concatenated.
  119.   local kind = kind_of(obj)  -- This is 'array' if it's an array or type(obj) otherwise.
  120.   if kind == 'array' then
  121.     if as_key then error('Can\'t encode array as key.') end
  122.     s[#s + 1] = '['
  123.     for i, val in ipairs(obj) do
  124.       if i > 1 then s[#s + 1] = ', ' end
  125.       s[#s + 1] = json.stringify(val)
  126.     end
  127.     s[#s + 1] = ']'
  128.   elseif kind == 'table' then
  129.     if as_key then error('Can\'t encode table as key.') end
  130.     s[#s + 1] = '{'
  131.     for k, v in pairs(obj) do
  132.       if #s > 1 then s[#s + 1] = ', ' end
  133.       s[#s + 1] = json.stringify(k, true)
  134.       s[#s + 1] = ':'
  135.       s[#s + 1] = json.stringify(v)
  136.     end
  137.     s[#s + 1] = '}'
  138.   elseif kind == 'string' then
  139.     return '"' .. escape_str(obj) .. '"'
  140.   elseif kind == 'number' then
  141.     if as_key then return '"' .. tostring(obj) .. '"' end
  142.     return tostring(obj)
  143.   elseif kind == 'boolean' then
  144.     return tostring(obj)
  145.   elseif kind == 'nil' then
  146.     return 'null'
  147.   else
  148.     error('Unjsonifiable type: ' .. kind .. '.')
  149.   end
  150.   return table.concat(s)
  151. end
  152.  
  153. json.null = {}  -- This is a one-off table to represent the null value.
  154.  
  155. function json.parse(str, pos, end_delim)
  156.   pos = pos or 1
  157.   if pos > #str then error('Reached unexpected end of input.') end
  158.   local pos = pos + #str:match('^%s*', pos)  -- Skip whitespace.
  159.   local first = str:sub(pos, pos)
  160.   if first == '{' then  -- Parse an object.
  161.     local obj, key, delim_found = {}, true, true
  162.     pos = pos + 1
  163.     while true do
  164.       key, pos = json.parse(str, pos, '}')
  165.       if key == nil then return obj, pos end
  166.       if not delim_found then error('Comma missing between object items.') end
  167.       pos = skip_delim(str, pos, ':', true)  -- true -> error if missing.
  168.       obj[key], pos = json.parse(str, pos)
  169.       pos, delim_found = skip_delim(str, pos, ',')
  170.     end
  171.   elseif first == '[' then  -- Parse an array.
  172.     local arr, val, delim_found = {}, true, true
  173.     pos = pos + 1
  174.     while true do
  175.       val, pos = json.parse(str, pos, ']')
  176.       if val == nil then return arr, pos end
  177.       if not delim_found then error('Comma missing between array items.') end
  178.       arr[#arr + 1] = val
  179.       pos, delim_found = skip_delim(str, pos, ',')
  180.     end
  181.   elseif first == '"' then  -- Parse a string.
  182.     return parse_str_val(str, pos + 1)
  183.   elseif first == '-' or first:match('%d') then  -- Parse a number.
  184.     return parse_num_val(str, pos)
  185.   elseif first == end_delim then  -- End of an object or array.
  186.     return nil, pos + 1
  187.   else  -- Parse true, false, or null.
  188.     local literals = {['true'] = true, ['false'] = false, ['null'] = json.null}
  189.     for lit_str, lit_val in pairs(literals) do
  190.       local lit_end = pos + #lit_str - 1
  191.       if str:sub(pos, lit_end) == lit_str then return lit_val, lit_end + 1 end
  192.     end
  193.     local pos_info_str = 'position ' .. pos .. ': ' .. str:sub(pos, pos + 10)
  194.     error('Invalid json syntax starting at ' .. pos_info_str)
  195.   end
  196. end
  197.  
  198. --return json of playerData with only the data needed for the leaderboard
  199. -- data are keys of the playerData table
  200. local function dataStringify(data)
  201.     local str = '{"' .. ac.getUserSteamID() .. '": '
  202.     local name = ac.getDriverName(0)
  203.     data['Name'] = name
  204.     str = str .. json.stringify(data) .. '}'
  205.     return str
  206. end
  207.  
  208.  
  209. ------------------------------------------------------------------------- Web Utils -------------------------------------------------------------------------
  210.  
  211. local settings = {
  212.     essentialSize = 20,
  213.     policeSize = 20,
  214.     hudOffsetX = 0,
  215.     hudOffsetY = 0,
  216.     fontSize = 20,
  217.     current = 1,
  218.     colorHud = rgbm(1,0,0,1),
  219.     timeMsg = 10,
  220.     msgOffsetY = 10,
  221.     msgOffsetX = windowWidth/2,
  222.     fontSizeMSG = 30,
  223.     menuPos = vec2(0, 0),
  224.     unit = "km/h",
  225.     unitMult = 1,
  226.     starsSize = 20,
  227.     starsPos = vec2(windowWidth, 0),
  228. }
  229.  
  230. local settingsJSON = {
  231.     essentialSize = 20,
  232.     policeSize = 20,
  233.     hudOffsetX = 0,
  234.     hudOffsetY = 0,
  235.     fontSize = 20,
  236.     current = 1,
  237.     colorHud = "1,0,0,1",
  238.     timeMsg = 10,
  239.     msgOffsetY = 10,
  240.     msgOffsetX = "1280",
  241.     fontSizeMSG = 30,
  242.     menuPos = vec2(0, 0),
  243.     unit = "km/h",
  244.     unitMult = 1,
  245.     starsSize = 20,
  246.     starsPos = vec2(windowWidth, 0),
  247. }
  248.  
  249.  
  250. local function stringToVec2(str)
  251.     if str == nil then return vec2(0, 0) end
  252.     local x = string.match(str, "([^,]+)")
  253.     local y = string.match(str, "[^,]+,(.+)")
  254.     return vec2(tonumber(x), tonumber(y))
  255. end
  256.  
  257. local function vec2ToString(vec)
  258.     return tostring(vec.x) .. ',' .. tostring(vec.y)
  259. end
  260.  
  261. local function stringToRGBM(str)
  262.     local r = string.match(str, "([^,]+)")
  263.     local g = string.match(str, "[^,]+,([^,]+)")
  264.     local b = string.match(str, "[^,]+,[^,]+,([^,]+)")
  265.     local m = string.match(str, "[^,]+,[^,]+,[^,]+,(.+)")
  266.     return rgbm(tonumber(r), tonumber(g), tonumber(b), tonumber(m))
  267. end
  268.  
  269. local function rgbmToString(rgbm)
  270.     return tostring(rgbm.r) .. ',' .. tostring(rgbm.g) .. ',' .. tostring(rgbm.b) .. ',' .. tostring(rgbm.mult)
  271. end
  272.  
  273. local function parsesettings(table)
  274.     settings.essentialSize = table.essentialSize
  275.     settings.policeSize = table.policeSize
  276.     settings.hudOffsetX = table.hudOffsetX
  277.     settings.hudOffsetY = table.hudOffsetY
  278.     settings.fontSize = table.fontSize
  279.     settings.current = table.current
  280.     settings.colorHud = stringToRGBM(table.colorHud)
  281.     settings.timeMsg = table.timeMsg
  282.     settings.msgOffsetY = table.msgOffsetY
  283.     settings.msgOffsetX = table.msgOffsetX
  284.     settings.fontSizeMSG = table.fontSizeMSG
  285.     settings.menuPos = stringToVec2(table.menuPos)
  286.     settings.unit = table.unit
  287.     settings.unitMult = table.unitMult
  288.     settings.starsSize = table.starsSize or 20
  289.     if table.starsPos == nil then
  290.         settings.starsPos = vec2(windowWidth, 0)
  291.     else
  292.         settings.starsPos = stringToVec2(table.starsPos)
  293.     end
  294. end
  295.  
  296.  
  297. ui.setAsynchronousImagesLoading(true)
  298. local imageSize = vec2(0,0)
  299.  
  300. local hudImg = {
  301.     base = "https://i.ibb.co/8N4mNj6/zhud.png",
  302.     arrest = "https://i.postimg.cc/DwJv2YgM/icon-Arrest.png",
  303.     cams = "https://i.postimg.cc/15zRdzNP/iconCams.png",
  304.     logs = "https://i.postimg.cc/VNXztr29/iconLogs.png",
  305.     lost = "https://i.postimg.cc/DyYf3KqG/iconLost.png",
  306.     menu = "https://i.postimg.cc/SxByj71N/iconMenu.png",
  307.     radar = "https://i.postimg.cc/4dZsQ4TD/icon-Radar.png",
  308. }
  309.  
  310. local cameras = {
  311.     {
  312.         name = "BOBs SCRAPYARD",
  313.         pos = vec3(-3564, 31.5, -103),
  314.         dir = -8,
  315.         fov = 60,
  316.     },
  317.     {
  318.         name = "ARENA",
  319.         pos = vec3(-2283, 115.5, 3284),
  320.         dir = 128,
  321.         fov = 70,
  322.     },
  323.     {
  324.         name = "BANK",
  325.         pos = vec3(-716, 151, 3556.4),
  326.         dir = 12,
  327.         fov = 95,
  328.     },
  329.     {
  330.         name = "STREET RUNNERS",
  331.         pos = vec3(-57.3, 103.5, 2935.5),
  332.         dir = 16,
  333.         fov = 67,
  334.     },
  335.     {
  336.         name = "ROAD CRIMINALS",
  337.         pos = vec3(-2332, 101.1, 3119.2),
  338.         dir = 121,
  339.         fov = 60,
  340.     },
  341.     {
  342.         name = "RECKLESS RENEGADES",
  343.         pos = vec3(-2993.7, -24.4, -601.7),
  344.         dir = -64,
  345.         fov = 60,
  346.     },
  347.     {
  348.         name = "MOTION MASTERS",
  349.         pos = vec3(-2120.4, -11.8, -1911.5),
  350.         dir = 102,
  351.         fov = 60,
  352.     },
  353. }
  354.  
  355. local pursuit = {
  356.     suspect = nil,
  357.     enable = false,
  358.     maxDistance = 250000,
  359.     minDistance = 40000,
  360.     nextMessage = 30,
  361.     level = 1,
  362.     id = -1,
  363.     timerArrest = 0,
  364.     hasArrested = false,
  365.     startedTime = 0,
  366.     timeLostSight = 0,
  367.     lostSight = false,
  368.     engage = false,
  369. }
  370.  
  371. local arrestations = {}
  372.  
  373. local textSize = {}
  374.  
  375. local textPos = {}
  376.  
  377. local iconPos = {}
  378.  
  379. local playerData = {}
  380.  
  381. ---------------------------------------------------------------------------------------------- Firebase ----------------------------------------------------------------------------------------------
  382.  
  383. local urlAppScript = 'https://script.google.com/macros/s/AKfycbwenxjCAbfJA-S90VlV0y7mEH75qt3TuqAmVvlGkx-Y1TX8z5gHtvf5Vb8bOVNOA_9j/exec'
  384. local firebaseUrl = 'https://acp-server-97674-default-rtdb.firebaseio.com/'
  385. local firebaseUrlData = 'https://acp-server-97674-default-rtdb.firebaseio.com/PlayersData/'
  386. local firebaseUrlsettings = 'https://acp-server-97674-default-rtdb.firebaseio.com/Settings'
  387.  
  388. local function updateSheets()
  389.     local str = '{"category" : "Arrestations"}'
  390.     web.post(urlAppScript, str, function(err, response)
  391.         if err then
  392.             print(err)
  393.             return
  394.         else
  395.             print(response.body)
  396.         end
  397.     end)
  398. end
  399.  
  400. local function addPlayerToDataBase()
  401.     local steamID = ac.getUserSteamID()
  402.     local name = ac.getDriverName(0)
  403.     local str = '{"' .. steamID .. '": {"Name":"' .. name .. '","Getaway": 0,"Drift": 0,"Overtake": 0,"Wins": 0,"Losses": 0,"Busted": 0,"Arrests": 0,"Theft": 0}}'
  404.     web.request('PATCH', firebaseUrl .. "Players.json", str, function(err, response)
  405.         if err then
  406.             print(err)
  407.             return
  408.         end
  409.     end)
  410. end
  411.  
  412. local function getFirebase()
  413.     local url = firebaseUrl .. "Players/" .. ac.getUserSteamID() .. '.json'
  414.     web.get(url, function(err, response)
  415.         if err then
  416.             print(err)
  417.             return
  418.         else
  419.             if response.body == 'null' then
  420.                 addPlayerToDataBase(ac.getUserSteamID())
  421.             else
  422.                 local jString = response.body
  423.                 playerData = json.parse(jString)
  424.                 if playerData.Name ~= ac.getDriverName(0) then
  425.                     playerData.Name = ac.getDriverName(0)
  426.                 end
  427.             end
  428.             ac.log('Player data loaded')
  429.         end
  430.     end)
  431. end
  432.  
  433. local function updatefirebase()
  434.     local str = '{"' .. ac.getUserSteamID() .. '": ' .. json.stringify(playerData) .. '}'
  435.     web.request('PATCH', firebaseUrl .. "Players.json", str, function(err, response)
  436.         if err then
  437.             print(err)
  438.             return
  439.         else
  440.             print(response.body)
  441.         end
  442.     end)
  443. end
  444.  
  445. local function updatefirebaseData(node, data)
  446.     local str = dataStringify(data)
  447.     web.request('PATCH', firebaseUrlData .. node .. ".json", str, function(err, response)
  448.         if err then
  449.             print(err)
  450.             return
  451.         else
  452.             print(response.body)
  453.             updateSheets()
  454.         end
  455.     end)
  456. end
  457.  
  458. local function addPlayersettingsToDataBase(steamID)
  459.     local str = '{"' .. steamID .. '": {"essentialSize":20,"policeSize":20,"hudOffsetX":0,"hudOffsetY":0,"fontSize":20,"current":1,"colorHud":"1,0,0,1","timeMsg":10,"msgOffsetY":10,"msgOffsetX":' .. windowWidth/2 .. ',"fontSizeMSG":30,"menuPos":"0,0","unit":"km/h","unitMult":1}}'
  460.     web.request('PATCH', firebaseUrlsettings .. ".json", str, function(err, response)
  461.         if err then
  462.             print(err)
  463.             return
  464.         end
  465.     end)
  466. end
  467.  
  468. local function loadsettings()
  469.     local url = firebaseUrlsettings .. "/" .. ac.getUserSteamID() .. '.json'
  470.     web.get(url, function(err, response)
  471.         if err then
  472.             print(err)
  473.             return
  474.         else
  475.             if response.body == 'null' then
  476.                 addPlayersettingsToDataBase(ac.getUserSteamID())
  477.             else
  478.                 ac.log("settings loaded")
  479.                 local jString = response.body
  480.                 local table = json.parse(jString)
  481.                 parsesettings(table)
  482.             end
  483.         end
  484.     end)
  485. end
  486.  
  487. local function updatesettings()
  488.     local str = '{"' .. ac.getUserSteamID() .. '": ' .. json.stringify(settingsJSON) .. '}'
  489.     web.request('PATCH', firebaseUrlsettings .. ".json", str, function(err, response)
  490.         if err then
  491.             print(err)
  492.             return
  493.         end
  494.     end)
  495. end
  496.  
  497. local function onsettingsChange()
  498.     settingsJSON.colorHud = rgbmToString(settings.colorHud)
  499.     settingsJSON.menuPos = vec2ToString(settings.menuPos)
  500.     settingsJSON.essentialSize = settings.essentialSize
  501.     settingsJSON.policeSize = settings.policeSize
  502.     settingsJSON.hudOffsetX = settings.hudOffsetX
  503.     settingsJSON.hudOffsetY = settings.hudOffsetY
  504.     settingsJSON.fontSize = settings.fontSize
  505.     settingsJSON.current = settings.current
  506.     settingsJSON.timeMsg = settings.timeMsg
  507.     settingsJSON.msgOffsetY  = settings.msgOffsetY
  508.     settingsJSON.msgOffsetX  = settings.msgOffsetX
  509.     settingsJSON.fontSizeMSG = settings.fontSizeMSG
  510.     settingsJSON.unit = settings.unit
  511.     settingsJSON.unitMult = settings.unitMult
  512.     settingsJSON.starsSize = settings.starsSize
  513.     settingsJSON.starsPos = vec2ToString(settings.starsPos)
  514.     updatesettings()
  515. end
  516.  
  517. ---------------------------------------------------------------------------------------------- settings ----------------------------------------------------------------------------------------------
  518.  
  519. local acpPolice = ac.OnlineEvent({
  520.     message = ac.StructItem.string(110),
  521.     messageType = ac.StructItem.int16(),
  522.     yourIndex = ac.StructItem.int16(),
  523. }, function (sender, data)
  524.     if data.yourIndex == car.sessionID and data.messageType == 0 and pursuit.suspect ~= nil and sender == pursuit.suspect then
  525.         pursuit.hasArrested = true
  526.         ac.log("ZHD Police: Police received")
  527.     end
  528. end)
  529.  
  530. local starsUI = {
  531.     starsPos = vec2(windowWidth - (settings.starsSize or 20)/2, settings.starsSize or 20)/2,
  532.     starsSize = vec2(windowWidth - (settings.starsSize or 20)*2, (settings.starsSize or 20)*2),
  533.     startSpace = (settings.starsSize or 20)/4,
  534. }
  535.  
  536. local function resetStarsUI()
  537.     if settings.starsPos == nil then
  538.         settings.starsPos = vec2(windowWidth, 0)
  539.     end
  540.     if settings.starsSize == nil then
  541.         settings.starsSize = 20
  542.     end
  543.     starsUI.starsPos = vec2(settings.starsPos.x - settings.starsSize/2, settings.starsPos.y + settings.starsSize/2)
  544.     starsUI.starsSize = vec2(settings.starsPos.x - settings.starsSize*2, settings.starsPos.y + settings.starsSize*2)
  545.     starsUI.startSpace = settings.starsSize/1.5
  546. end
  547.  
  548. local function updatePos()
  549.     imageSize = vec2(windowHeight/80 * settings.policeSize, windowHeight/80 * settings.policeSize)
  550.     iconPos.arrest1 = vec2(imageSize.x - imageSize.x/12, imageSize.y/3.2)
  551.     iconPos.arrest2 = vec2(imageSize.x/1.215, imageSize.y/5)
  552.     iconPos.lost1 = vec2(imageSize.x - imageSize.x/12, imageSize.y/2.35)
  553.     iconPos.lost2 = vec2(imageSize.x/1.215, imageSize.y/3.2)
  554.     iconPos.logs1 = vec2(imageSize.x/1.215, imageSize.y/1.88)
  555.     iconPos.logs2 = vec2(imageSize.x/1.39, imageSize.y/2.35)
  556.     iconPos.menu1 = vec2(imageSize.x - imageSize.x/12, imageSize.y/1.88)
  557.     iconPos.menu2 = vec2(imageSize.x/1.215, imageSize.y/2.35)
  558.     iconPos.cams1 = vec2(imageSize.x/1.215, imageSize.y/2.35)
  559.     iconPos.cams2 = vec2(imageSize.x/1.39, imageSize.y/3.2)
  560.  
  561.     textSize.size = vec2(imageSize.x*3/5, settings.fontSize/2)
  562.     textSize.box = vec2(imageSize.x*3/5, settings.fontSize/1.3)
  563.     textSize.window1 = vec2(settings.hudOffsetX+imageSize.x/9.5, settings.hudOffsetY+imageSize.y/5.3)
  564.     textSize.window2 = vec2(imageSize.x*3/5, imageSize.y/2.8)
  565.  
  566.     textPos.box1 = vec2(0, 0)
  567.     textPos.box2 = vec2(textSize.size.x, textSize.size.y*1.8)
  568.     textPos.addBox = vec2(0, textSize.size.y*1.8)
  569.     settings.fontSize = settings.policeSize * fontMultiplier
  570.  
  571.     resetStarsUI()
  572. end
  573.  
  574. local function showStarsPursuit()
  575.     local starsColor = rgbm(1, 1, 1, os.clock()%2 + 0.3)
  576.     resetStarsUI()
  577.     for i = 1, 5 do
  578.         if i > pursuit.level/2 then
  579.             ui.drawIcon(ui.Icons.StarEmpty, starsUI.starsPos, starsUI.starsSize, rgbm(1, 1, 1, 0.2))
  580.         else
  581.             ui.drawIcon(ui.Icons.StarFull, starsUI.starsPos, starsUI.starsSize, starsColor)
  582.         end
  583.         starsUI.starsPos.x = starsUI.starsPos.x - settings.starsSize - starsUI.startSpace
  584.         starsUI.starsSize.x = starsUI.starsSize.x - settings.starsSize - starsUI.startSpace
  585.     end
  586. end
  587.  
  588. local showPreviewMsg = false
  589. local showPreviewStars = false
  590. COLORSMSGBG = rgbm(0.5,0.5,0.5,0.5)
  591.  
  592. local function initsettings()
  593.     if settings.unit then
  594.         settings.fontSize = settings.policeSize * fontMultiplier
  595.         if settings.unit ~= "km/h" then settings.unitMult = 0.621371 end
  596.         settings.policeSize = settings.policeSize * windowHeight/1440
  597.         settings.fontSize = settings.policeSize * windowHeight/1440
  598.         imageSize = vec2(windowHeight/80 * settings.policeSize, windowHeight/80 * settings.policeSize)
  599.         updatePos()
  600.     end
  601. end
  602.  
  603. local function previewMSG()
  604.     ui.beginTransparentWindow("previewMSG", vec2(0, 0), vec2(windowWidth, windowHeight))
  605.     ui.pushDWriteFont("Orbitron;Weight=800")
  606.     local tSize = ui.measureDWriteText("Messages from Police when being chased", settings.fontSizeMSG)
  607.     local uiOffsetX = settings.msgOffsetX - tSize.x/2
  608.     local uiOffsetY = settings.msgOffsetY
  609.     ui.drawRectFilled(vec2(uiOffsetX - 5, uiOffsetY-5), vec2(uiOffsetX + tSize.x + 5, uiOffsetY + tSize.y + 5), COLORSMSGBG)
  610.     ui.dwriteDrawText("Messages from Police when being chased", settings.fontSizeMSG, vec2(uiOffsetX, uiOffsetY), rgbm.colors.cyan)
  611.     ui.popDWriteFont()
  612.     ui.endTransparentWindow()
  613. end
  614.  
  615. local function previewStars()
  616.     ui.beginTransparentWindow("previewStars", vec2(0, 0), vec2(windowWidth, windowHeight))
  617.     showStarsPursuit()
  618.     ui.endTransparentWindow()
  619. end
  620.  
  621. local function uiTab()
  622.     ui.text('On Screen Message : ')
  623.     settings.timeMsg = ui.slider('##' .. 'Time Msg On Screen', settings.timeMsg, 1, 15, 'Time Msg On Screen' .. ': %.0fs')
  624.     settings.fontSizeMSG = ui.slider('##' .. 'Font Size MSG', settings.fontSizeMSG, 10, 50, 'Font Size' .. ': %.0f')
  625.     ui.text('Stars : ')
  626.     settings.starsPos.x = ui.slider('##' .. 'Stars Offset X', settings.starsPos.x, 0, windowWidth, 'Stars Offset X' .. ': %.0f')
  627.     settings.starsPos.y = ui.slider('##' .. 'Stars Offset Y', settings.starsPos.y, 0, windowHeight, 'Stars Offset Y' .. ': %.0f')
  628.     settings.starsSize = ui.slider('##' .. 'Stars Size', settings.starsSize, 10, 50, 'Stars Size' .. ': %.0f')
  629.     ui.newLine()
  630.     ui.text('Offset : ')
  631.     settings.msgOffsetY = ui.slider('##' .. 'Msg On Screen Offset Y', settings.msgOffsetY, 0, windowHeight, 'Msg On Screen Offset Y' .. ': %.0f')
  632.     settings.msgOffsetX = ui.slider('##' .. 'Msg On Screen Offset X', settings.msgOffsetX, 0, windowWidth, 'Msg On Screen Offset X' .. ': %.0f')
  633.     ui.newLine()
  634.     ui.text('Preview : ')
  635.     ui.sameLine()
  636.     if ui.button('Message') then
  637.         showPreviewMsg = not showPreviewMsg
  638.         showPreviewStars = false
  639.     end
  640.     ui.sameLine()
  641.     if ui.button('Stars') then
  642.         showPreviewStars = not showPreviewStars
  643.         showPreviewMsg = false
  644.     end
  645.     if showPreviewMsg then previewMSG()
  646.     elseif showPreviewStars then previewStars() end
  647.     if ui.button('Offset X to center') then settings.msgOffsetX = windowWidth/2 end
  648.     ui.newLine()
  649. end
  650.  
  651. local function settingsWindow()
  652.     imageSize = vec2(windowHeight/80 * settings.policeSize, windowHeight/80 * settings.policeSize)
  653.     ui.dwriteTextAligned("settings", 40, ui.Alignment.Center, ui.Alignment.Center, vec2(windowWidth/6.5,60), false, rgbm.colors.white)
  654.     ui.drawLine(vec2(0,60), vec2(windowWidth/6.5,60), rgbm.colors.white, 1)
  655.     ui.newLine(20)
  656.     ui.sameLine(10)
  657.     ui.beginGroup()
  658.     ui.text('Unit : ')
  659.     ui.sameLine(160)
  660.     if ui.selectable('mph', settings.unit == 'mph',_, ui.measureText('km/h')) then
  661.         settings.unit = 'mph'
  662.         settings.unitMult = 0.621371
  663.     end
  664.     ui.sameLine(200)
  665.     if ui.selectable('km/h', settings.unit == 'km/h',_, ui.measureText('km/h')) then
  666.         settings.unit = 'km/h'
  667.         settings.unitMult = 1
  668.     end
  669.     ui.sameLine(windowWidth/6.5 - 120)
  670.     if ui.button('Close', vec2(100, windowHeight/50)) then
  671.         settingsOpen = false
  672.         onsettingsChange()
  673.     end
  674.     ui.text('HUD : ')
  675.     settings.hudOffsetX = ui.slider('##' .. 'HUD Offset X', settings.hudOffsetX, 0, windowWidth, 'HUD Offset X' .. ': %.0f')
  676.     settings.hudOffsetY = ui.slider('##' .. 'HUD Offset Y', settings.hudOffsetY, 0, windowHeight, 'HUD Offset Y' .. ': %.0f')
  677.     settings.policeSize = ui.slider('##' .. 'HUD Size', settings.policeSize, 10, 50, 'HUD Size' .. ': %.0f')
  678.     settings.fontSize = settings.policeSize * fontMultiplier
  679.     ui.setNextItemWidth(300)
  680.     ui.newLine()
  681.     uiTab()
  682.     updatePos()
  683.     ui.endGroup()
  684. end
  685.  
  686. ---------------------------------------------------------------------------------------------- Utils ----------------------------------------------------------------------------------------------
  687.  
  688. local function formatMessage(message)
  689.     local msgToSend = message
  690.     if pursuit.suspect == nil then
  691.         msgToSend = string.gsub(msgToSend,"`CAR`", "No Car")
  692.         msgToSend = string.gsub(msgToSend,"`NAME`", "No Name")
  693.         msgToSend = string.gsub(msgToSend,"`SPEED`", "No Speed")
  694.         return msgToSend
  695.     end
  696.     msgToSend = string.gsub(msgToSend,"`CAR`", string.gsub(string.gsub(ac.getCarName(pursuit.suspect.index), "%W", " "), "  ", ""))
  697.     msgToSend = string.gsub(msgToSend,"`NAME`", "@" .. ac.getDriverName(pursuit.suspect.index))
  698.     msgToSend = string.gsub(msgToSend,"`SPEED`", string.format("%d ", ac.getCarSpeedKmh(pursuit.suspect.index) * settings.unitMult) .. settings.unit)
  699.     return msgToSend
  700. end
  701.  
  702. ---------------------------------------------------------------------------------------------- HUD ----------------------------------------------------------------------------------------------
  703.  
  704. local policeLightsPos = {
  705.     vec2(0,0),
  706.     vec2(windowWidth/10,windowHeight),
  707.     vec2(windowWidth-windowWidth/10,0),
  708.     vec2(windowWidth,windowHeight)
  709. }
  710.  
  711. local function showPoliceLights()
  712.     local timing = math.floor(os.clock()*2 % 2)
  713.     if timing == 0 then
  714.         ui.drawRectFilledMultiColor(policeLightsPos[1], policeLightsPos[2], rgbm(1,0,0,0.5), rgbm(0,0,0,0), rgbm(0,0,0,0), rgbm(1,0,0,0.5))
  715.         ui.drawRectFilledMultiColor(policeLightsPos[3], policeLightsPos[4], rgbm(0,0,0,0), rgbm(0,0,1,0.5), rgbm(0,0,1,0.5), rgbm(0,0,0,0))
  716.     else
  717.         ui.drawRectFilledMultiColor(policeLightsPos[1], policeLightsPos[2], rgbm(0,0,1,0.5), rgbm(0,0,0,0), rgbm(0,0,0,0), rgbm(0,0,1,0.5))
  718.         ui.drawRectFilledMultiColor(policeLightsPos[3], policeLightsPos[4], rgbm(0,0,0,0), rgbm(1,0,0,0.5), rgbm(1,0,0,0.5), rgbm(0,0,0,0))
  719.     end
  720. end
  721.  
  722. local chaseLVL = {
  723.     message = "",
  724.     messageTimer = 0,
  725.     color = rgbm(1,1,1,1),
  726. }
  727.  
  728. local function resetChase()
  729.     pursuit.enable = false
  730.     pursuit.nextMessage = 30
  731.     pursuit.lostSight = false
  732.     pursuit.timeLostSight = 2
  733. end
  734.  
  735. local function lostSuspect()
  736.     resetChase()
  737.     pursuit.lostSight = false
  738.     pursuit.timeLostSight = 0
  739.     pursuit.level = 1
  740.     ac.sendChatMessage(formatMessage(msgLost.msg[math.random(#msgLost.msg)]))
  741.     pursuit.suspect = nil
  742.     if cspAboveP218 then
  743.         ac.setExtraSwitch(0, false)
  744.     end
  745. end
  746.  
  747. local iconsColorOn = {
  748.     [1] = rgbm(1,0,0,1),
  749.     [2] = rgbm(1,1,1,1),
  750.     [3] = rgbm(1,1,1,1),
  751.     [4] = rgbm(1,1,1,1),
  752.     [5] = rgbm(1,1,1,1),
  753.     [6] = rgbm(1,1,1,1),
  754. }
  755.  
  756. local playersInRange = {}
  757.  
  758. local function drawImage()
  759.     iconsColorOn[2] = rgbm(0.99,0.99,0.99,1)
  760.     iconsColorOn[3] = rgbm(0.99,0.99,0.99,1)
  761.     iconsColorOn[4] = rgbm(0.99,0.99,0.99,1)
  762.     iconsColorOn[5] = rgbm(0.99,0.99,0.99,1)
  763.     iconsColorOn[6] = rgbm(0.99,0.99,0.99,1)
  764.     local uiStats = ac.getUI()
  765.  
  766.     if ui.rectHovered(iconPos.arrest2, iconPos.arrest1) then
  767.         iconsColorOn[2] = rgbm(1,0,0,1)
  768.         if pursuit.suspect and pursuit.suspect.speedKmh < 50 and car.speedKmh < 20 and uiStats.isMouseLeftKeyClicked then
  769.             pursuit.hasArrested = true
  770.         end
  771.     elseif ui.rectHovered(iconPos.cams2, iconPos.cams1) then
  772.         iconsColorOn[3] = rgbm(1,0,0,1)
  773.         if uiStats.isMouseLeftKeyClicked then
  774.             if camerasOpen then camerasOpen = false
  775.             else
  776.                 camerasOpen = true
  777.                 arrestLogsOpen = false
  778.                 if settingsOpen then
  779.                     onsettingsChange()
  780.                     settingsOpen = false
  781.                 end
  782.             end
  783.         end
  784.     elseif ui.rectHovered(iconPos.lost2, iconPos.lost1) then
  785.         iconsColorOn[4] = rgbm(1,0,0,1)
  786.         if pursuit.suspect and uiStats.isMouseLeftKeyClicked then
  787.             lostSuspect()
  788.         end
  789.     elseif ui.rectHovered(iconPos.logs2, iconPos.logs1) then
  790.         iconsColorOn[5] = rgbm(1,0,0,1)
  791.         if uiStats.isMouseLeftKeyClicked then
  792.             if arrestLogsOpen then arrestLogsOpen = false
  793.             else
  794.                 arrestLogsOpen = true
  795.                 camerasOpen = false
  796.                 if settingsOpen then
  797.                     onsettingsChange()
  798.                     settingsOpen = false
  799.                 end
  800.             end
  801.         end
  802.     elseif ui.rectHovered(iconPos.menu2, iconPos.menu1) then
  803.         iconsColorOn[6] = rgbm(1,0,0,1)
  804.         if uiStats.isMouseLeftKeyClicked then
  805.             if settingsOpen then
  806.                 onsettingsChange()
  807.                 settingsOpen = false
  808.             else
  809.                 settingsOpen = true
  810.                 arrestLogsOpen = false
  811.                 camerasOpen = false
  812.             end
  813.         end
  814.     end
  815.     ui.image(hudImg.base, imageSize, rgbm.colors.white)
  816.     ui.drawImage(hudImg.radar, vec2(0,0), imageSize, iconsColorOn[1])
  817.     ui.drawImage(hudImg.arrest, vec2(0,0), imageSize, iconsColorOn[2])
  818.     ui.drawImage(hudImg.cams, vec2(0,0), imageSize, iconsColorOn[3])
  819.     ui.drawImage(hudImg.lost, vec2(0,0), imageSize, iconsColorOn[4])
  820.     ui.drawImage(hudImg.logs, vec2(0,0), imageSize, iconsColorOn[5])
  821.     ui.drawImage(hudImg.menu, vec2(0,0), imageSize, iconsColorOn[6])
  822. end
  823.  
  824. local function playerSelected(player)
  825.     if player.speedKmh > 50 then
  826.         pursuit.suspect = player
  827.         pursuit.nextMessage = 30
  828.         pursuit.level = 1
  829.         local msgToSend = "Officer " .. ac.getDriverName(0) .. " is chasing you. Run! "
  830.         pursuit.startedTime = settings.timeMsg
  831.         pursuit.engage = true
  832.         acpPolice{message = msgToSend, messageType = 0, yourIndex = ac.getCar(pursuit.suspect.index).sessionID}
  833.         if cspAboveP218 then
  834.             ac.setExtraSwitch(0, true)
  835.         end
  836.     end
  837. end
  838.  
  839. local function hudInChase()
  840.     ui.pushDWriteFont("Orbitron;Weight=Black")
  841.     ui.sameLine(20)
  842.     ui.beginGroup()
  843.     ui.newLine(1)
  844.     local textPursuit = "LVL : " .. math.floor(pursuit.level/2)
  845.     ui.dwriteTextWrapped(ac.getDriverName(pursuit.suspect.index) .. '\n'
  846.                         .. string.gsub(string.gsub(ac.getCarName(pursuit.suspect.index), "%W", " "), "  ", "")
  847.                         .. '\n' .. string.format("Speed: %d ", pursuit.suspect.speedKmh * settings.unitMult) .. settings.unit
  848.                         .. '\n' .. textPursuit, settings.fontSize/2, rgbm.colors.white)
  849.     ui.dummy(vec2(imageSize.x/5,imageSize.y/20))
  850.     ui.newLine(30)
  851.     ui.sameLine()
  852.     if ui.button('Cancel Chase', vec2(imageSize.x/5, imageSize.y/20)) then
  853.         lostSuspect()
  854.     end
  855.     ui.endGroup()
  856.     ui.popDWriteFont()
  857. end
  858.  
  859. local function drawText()
  860.     local uiStats = ac.getUI()
  861.     ui.pushDWriteFont("Orbitron;Weight=Bold")
  862.     ui.dwriteDrawText("RADAR ACTIVE", settings.fontSize/2, vec2((textPos.box2.x - ui.measureDWriteText("RADAR ACTIVE", settings.fontSize/2).x)/2, 0), rgbm(1,0,0,1))
  863.     ui.popDWriteFont()
  864.     ui.pushDWriteFont("Orbitron;Weight=Regular")
  865.     ui.dwriteDrawText("NEARBY VEHICULE SPEED SCANNING", settings.fontSize/3, vec2((textPos.box2.x - ui.measureDWriteText("NEARBY VEHICULE SPEED SCANNING", settings.fontSize/3).x)/2, settings.fontSize/1.5), rgbm(1,0,0,1))
  866.  
  867.     local colorText = rgbm(1,1,1,1)
  868.     textPos.box1 = vec2(0, textSize.size.y*2.5)
  869.     ui.dummy(vec2(textPos.box2.x,settings.fontSize))
  870.     for i = 1, #playersInRange do
  871.         colorText = rgbm(1,1,1,1)
  872.         ui.drawRect(vec2(textPos.box2.x/9,textPos.box1.y), vec2(textPos.box2.x*8/9, textPos.box1.y + textPos.box2.y), rgbm(1,1,1,0.1), 1)
  873.         if ui.rectHovered(textPos.box1, textPos.box1 + textPos.box2) then
  874.             colorText = rgbm(1,0,0,1)
  875.             if uiStats.isMouseLeftKeyClicked then
  876.                 playerSelected(playersInRange[i].player)
  877.             end
  878.         end
  879.         ui.dwriteDrawText(playersInRange[i].text, settings.fontSize/2, vec2((textPos.box2.x - ui.measureDWriteText(ac.getDriverName(playersInRange[i].player.index) .. " - 000 " .. settings.unit, settings.fontSize/2).x)/2, textPos.box1.y + textSize.size.y/5), colorText)
  880.         textPos.box1 = textPos.box1 + textPos.addBox
  881.         ui.dummy(vec2(textPos.box2.x, i * settings.fontSize/5))
  882.     end
  883.     ui.popDWriteFont()
  884. end
  885.  
  886. local function radarUI()
  887.     ui.toolWindow('radarText', textSize.window1, textSize.window2, true, function ()
  888.         ui.childWindow('childradar', textSize.window2, true , function ()
  889.             if pursuit.suspect then hudInChase()
  890.             else drawText() end
  891.         end)
  892.     end)
  893.     ui.transparentWindow('radar', vec2(settings.hudOffsetX, settings.hudOffsetY), imageSize, true, function ()
  894.         drawImage()
  895.     end)
  896. end
  897.  
  898. local function hidePlayers()
  899.     local hideRange = 500
  900.     for i = ac.getSim().carsCount - 1, 0, -1 do
  901.         local player = ac.getCar(i)
  902.         local playerCarID = ac.getCarID(i)
  903.         if player.isConnected and ac.getCarBrand(i) ~= "traffic" then
  904.             if playerCarID ~= valideCar[1] and playerCarID ~= valideCar[2] and playerCarID ~= valideCar[3] then
  905.                 if player.position.x > car.position.x - hideRange and player.position.z > car.position.z - hideRange and player.position.x < car.position.x + hideRange and player.position.z < car.position.z + hideRange then
  906.                     ac.hideCarLabels(i, false)
  907.                 else
  908.                     ac.hideCarLabels(i, true)
  909.                 end
  910.             end
  911.         end
  912.     end
  913. end
  914.  
  915. local function radarUpdate()
  916.     if firstload and not pursuit.suspect then return end
  917.     local radarRange = 250
  918.     local previousSize = #playersInRange
  919.  
  920.     local j = 1
  921.     for i = ac.getSim().carsCount - 1, 0, -1 do
  922.         local player = ac.getCar(i)
  923.         local playerCarID = ac.getCarID(i)
  924.         if player.isConnected and ac.getCarBrand(i) ~= "traffic" then
  925.             if playerCarID ~= valideCar[1] and playerCarID ~= valideCar[2] and playerCarID ~= valideCar[3] then
  926.                 if player.position.x > car.position.x - radarRange and player.position.z > car.position.z - radarRange and player.position.x < car.position.x + radarRange and player.position.z < car.position.z + radarRange then
  927.                     playersInRange[j] = {}
  928.                     playersInRange[j].player = player
  929.                     playersInRange[j].text = ac.getDriverName(player.index) .. string.format(" - %d ", player.speedKmh * settings.unitMult) .. settings.unit
  930.                     j = j + 1
  931.                     if j == 9 then break end
  932.                 end
  933.             end
  934.         end
  935.     end
  936.     for i = j, previousSize do playersInRange[i] = nil end
  937. end
  938.  
  939. ---------------------------------------------------------------------------------------------- Chase ----------------------------------------------------------------------------------------------
  940.  
  941. local function inRange()
  942.     local distance_x = pursuit.suspect.position.x - car.position.x
  943.     local distance_z = pursuit.suspect.position.z - car.position.z
  944.     local distanceSquared = distance_x * distance_x + distance_z * distance_z
  945.     if(distanceSquared < pursuit.minDistance) then
  946.         pursuit.enable = true
  947.         pursuit.lostSight = false
  948.         pursuit.timeLostSight = 2
  949.     elseif (distanceSquared < pursuit.maxDistance) then resetChase()
  950.     else
  951.         if not pursuit.lostSight then
  952.             pursuit.lostSight = true
  953.             pursuit.timeLostSight = 2
  954.         else
  955.             pursuit.timeLostSight = pursuit.timeLostSight - ui.deltaTime()
  956.             if pursuit.timeLostSight < 0 then lostSuspect() end
  957.         end
  958.     end
  959. end
  960.  
  961. local function sendChatToSuspect()
  962.     if pursuit.enable then
  963.         if 0 < pursuit.nextMessage then
  964.             pursuit.nextMessage = pursuit.nextMessage - ui.deltaTime()
  965.         elseif pursuit.nextMessage < 0 then
  966.             local nb = tostring(pursuit.level)
  967.             acpPolice{message = nb, messageType = 1, yourIndex = ac.getCar(pursuit.suspect.index).sessionID}
  968.             if pursuit.level < 10 then
  969.                 pursuit.level = pursuit.level + 1
  970.                 chaseLVL.messageTimer = settings.timeMsg
  971.                 chaseLVL.message = "CHASE LEVEL " .. math.floor(pursuit.level/2)
  972.                 if pursuit.level > 8 then
  973.                     chaseLVL.color = rgbm.colors.red
  974.                 elseif pursuit.level > 6 then
  975.                     chaseLVL.color = rgbm.colors.orange
  976.                 elseif pursuit.level > 4 then
  977.                     chaseLVL.color = rgbm.colors.yellow
  978.                 else
  979.                     chaseLVL.color = rgbm.colors.white
  980.                 end
  981.             end
  982.             pursuit.nextMessage = 30
  983.         end
  984.     end
  985. end
  986.  
  987. local function showPursuitMsg()
  988.     local text = ""
  989.     if chaseLVL.messageTimer > 0 then
  990.         chaseLVL.messageTimer = chaseLVL.messageTimer - ui.deltaTime()
  991.         text = chaseLVL.message
  992.     end
  993.     if pursuit.startedTime > 0 then
  994.         if pursuit.suspect then
  995.             text = "You are chasing " .. ac.getDriverName(pursuit.suspect.index) .. " driving a " .. string.gsub(string.gsub(ac.getCarName(pursuit.suspect.index), "%W", " "), "  ", "") .. " ! Get him! "
  996.         end
  997.         if pursuit.startedTime > 6 then showPoliceLights() end
  998.         if pursuit.engage and pursuit.startedTime < 8 then
  999.             ac.sendChatMessage(formatMessage(msgEngage.msg[math.random(#msgEngage.msg)]))
  1000.             pursuit.engage = false
  1001.         end
  1002.     end
  1003.     if text ~= "" then
  1004.         local textLenght = ui.measureDWriteText(text, settings.fontSizeMSG)
  1005.         local rectPos1 = vec2(settings.msgOffsetX - textLenght.x/2, settings.msgOffsetY)
  1006.         local rectPos2 = vec2(settings.msgOffsetX + textLenght.x/2, settings.msgOffsetY + settings.fontSizeMSG)
  1007.         local rectOffset = vec2(10, 10)
  1008.         if ui.time() % 1 < 0.5 then
  1009.             ui.drawRectFilled(rectPos1 - vec2(10,0), rectPos2 + rectOffset, COLORSMSGBG, 10)
  1010.         else
  1011.             ui.drawRectFilled(rectPos1 - vec2(10,0), rectPos2 + rectOffset, rgbm(0,0,0,0.5), 10)
  1012.         end
  1013.         ui.dwriteDrawText(text, settings.fontSizeMSG, rectPos1, chaseLVL.color)
  1014.     end
  1015. end
  1016.  
  1017. local function arrestSuspect()
  1018.     if pursuit.hasArrested and pursuit.suspect then
  1019.         local msgToSend = formatMessage(msgArrest.msg[math.random(#msgArrest.msg)])
  1020.         table.insert(arrestations, msgToSend .. os.date("\nDate of the Arrestation: %c"))
  1021.         ac.sendChatMessage(msgToSend .. "\nPlease Get Back Pit, GG!")
  1022.         pursuit.id = pursuit.suspect.sessionID
  1023.         if playerData.Arrests == nil then playerData.Arrests = 0 end
  1024.         playerData.Arrests = playerData.Arrests + 1
  1025.         pursuit.startedTime = 0
  1026.         pursuit.suspect = nil
  1027.         pursuit.timerArrest = 1
  1028.     elseif pursuit.hasArrested then
  1029.         if pursuit.timerArrest > 0 then
  1030.             pursuit.timerArrest = pursuit.timerArrest - ui.deltaTime()
  1031.         else
  1032.             acpPolice{message = "BUSTED!", messageType = 2, yourIndex = pursuit.id}
  1033.             pursuit.timerArrest = 0
  1034.             pursuit.suspect = nil
  1035.             pursuit.id = -1
  1036.             pursuit.hasArrested = false
  1037.             pursuit.startedTime = 0
  1038.             pursuit.enable = false
  1039.             pursuit.level = 1
  1040.             pursuit.nextMessage = 20
  1041.             pursuit.lostSight = false
  1042.             pursuit.timeLostSight = 0
  1043.             local data = {
  1044.                 ["Arrests"] = playerData.Arrests,
  1045.             }
  1046.             updatefirebase()
  1047.             updatefirebaseData("Arrests", data)
  1048.         end
  1049.     end
  1050. end
  1051.  
  1052. local function chaseUpdate()
  1053.     if pursuit.startedTime > 0 then pursuit.startedTime = pursuit.startedTime - ui.deltaTime()
  1054.     else pursuit.startedTime = 0 end
  1055.     if pursuit.suspect then
  1056.         sendChatToSuspect()
  1057.         inRange()
  1058.     end
  1059.     arrestSuspect()
  1060. end
  1061.  
  1062. ---------------------------------------------------------------------------------------------- Menu ----------------------------------------------------------------------------------------------
  1063.  
  1064. local function arrestLogsUI()
  1065.     ui.dwriteTextAligned("Arrestation Logs", 40, ui.Alignment.Center, ui.Alignment.Center, vec2(windowWidth/4,60), false, rgbm.colors.white)
  1066.     ui.drawLine(vec2(0,60), vec2(windowWidth/4,60), rgbm.colors.white, 1)
  1067.     ui.newLine(15)
  1068.     ui.sameLine(10)
  1069.     ui.beginGroup()
  1070.     local allMsg = ""
  1071.     ui.dwriteText("Click on the button next to the message you want to copy.", 15, rgbm.colors.white)
  1072.     ui.sameLine(windowWidth/4 - 120)
  1073.     if ui.button('Close', vec2(100, windowHeight/50)) then arrestLogsOpen = false end
  1074.     for i = 1, #arrestations do
  1075.         if ui.smallButton("#" .. i .. ": ", vec2(0,10)) then
  1076.             ui.setClipboardText(arrestations[i])
  1077.         end
  1078.         ui.sameLine()
  1079.         ui.dwriteTextWrapped(arrestations[i], 15, rgbm.colors.white)
  1080.     end
  1081.     if #arrestations == 0 then
  1082.         ui.dwriteText("No arrestation logs yet.", 15, rgbm.colors.white)
  1083.     end
  1084.     ui.newLine()
  1085.     if ui.button("Set all messages to ClipBoard") then
  1086.         for i = 1, #arrestations do
  1087.             allMsg = allMsg .. arrestations[i] .. "\n\n"
  1088.         end
  1089.         ui.setClipboardText(allMsg)
  1090.     end
  1091.     ui.endGroup()
  1092. end
  1093.  
  1094. local buttonPos = windowWidth/65
  1095.  
  1096. local function camerasUI()
  1097.     ui.dwriteTextAligned("Surveillance Cameras", 40, ui.Alignment.Center, ui.Alignment.Center, vec2(windowWidth/6.5,60), false, rgbm.colors.white)
  1098.     ui.drawLine(vec2(0,60), vec2(windowWidth/6.5,60), rgbm.colors.white, 1)
  1099.     ui.newLine(20)
  1100.     ui.beginGroup()
  1101.     ui.sameLine(buttonPos)
  1102.     if ui.button('Close', vec2(windowWidth/6.5 - buttonPos*2,30)) then camerasOpen = false end
  1103.     ui.newLine()
  1104.     for i = 1, #cameras do
  1105.         local h = math.rad(cameras[i].dir + ac.getCompassAngle(vec3(0, 0, 1)))
  1106.         ui.newLine()
  1107.         ui.sameLine(buttonPos)
  1108.         if ui.button(cameras[i].name, vec2(windowWidth/6.5 - buttonPos*2,30)) then
  1109.             ac.setCurrentCamera(ac.CameraMode.Free)
  1110.             ac.setCameraPosition(cameras[i].pos)
  1111.             ac.setCameraDirection(vec3(math.sin(h), 0, math.cos(h)))
  1112.             ac.setCameraFOV(cameras[i].fov)
  1113.         end
  1114.     end
  1115.     if ac.getSim().cameraMode == ac.CameraMode.Free then
  1116.         ui.newLine()
  1117.         ui.newLine()
  1118.         ui.sameLine(buttonPos)
  1119.         if ui.button('Police car camera', vec2(windowWidth/6.5 - buttonPos*2,30)) then ac.setCurrentCamera(ac.CameraMode.Cockpit) end
  1120.     end
  1121. end
  1122.  
  1123.  
  1124. local initialized = false
  1125. local menuSize = {vec2(windowWidth/4, windowHeight/3), vec2(windowWidth/6.4, windowHeight/2.2)}
  1126. local buttonPressed = false
  1127.  
  1128. local function moveMenu()
  1129.     if ui.windowHovered() and ui.mouseDown() then buttonPressed = true end
  1130.     if ui.mouseReleased() then buttonPressed = false end
  1131.     if buttonPressed then settings.menuPos = settings.menuPos + ui.mouseDelta() end
  1132. end
  1133.  
  1134. ---------------------------------------------------------------------------------------------- updates ----------------------------------------------------------------------------------------------
  1135.  
  1136. function script.drawUI()
  1137.     if carID ~= valideCar[1] and carID ~= valideCar[2] and carID ~= valideCar[3] or cspVersion < cspMinVersion then return end
  1138.     if initialized and settings.policeSize then
  1139.         if firstload then
  1140.             firstload = false
  1141.             initsettings()
  1142.         end
  1143.         radarUI()
  1144.         if pursuit.suspect then showStarsPursuit() end
  1145.         showPursuitMsg()
  1146.         if settingsOpen then
  1147.             ui.toolWindow('settings', settings.menuPos, menuSize[2], true, function ()
  1148.                 ui.childWindow('childsettings', menuSize[2], true, function () settingsWindow() moveMenu() end)
  1149.             end)
  1150.         elseif arrestLogsOpen then
  1151.             ui.toolWindow('ArrestLogs', settings.menuPos, menuSize[1], true, function ()
  1152.                 ui.childWindow('childArrestLogs', menuSize[1], true, function () arrestLogsUI() moveMenu() end)
  1153.             end)
  1154.         elseif camerasOpen then
  1155.             ui.toolWindow('Cameras', settings.menuPos, menuSize[2], true, function ()
  1156.                 ui.childWindow('childCameras', menuSize[2], true, function () camerasUI() moveMenu() end)
  1157.             end)
  1158.         end
  1159.     end
  1160. end
  1161.  
  1162. ac.onCarJumped(0, function (carid)
  1163.     if carID == valideCar[1] or carID == valideCar[2] or carID == valideCar[3]then
  1164.         if pursuit.suspect then lostSuspect() end
  1165.     end
  1166. end)
  1167.  
  1168. function script.update(dt)
  1169.     if carID ~= valideCar[1] and carID ~= valideCar[2] and carID ~= valideCar[3] or cspVersion < cspMinVersion then return end
  1170.     if not initialized then
  1171.         loadsettings()
  1172.         getFirebase()
  1173.         initialized = true
  1174.     else
  1175.         radarUpdate()
  1176.         chaseUpdate()
  1177.         --hidePlayers()
  1178.     end
  1179. end
  1180.  
  1181. if carID == valideCar[1] or carID == valideCar[2] or carID == valideCar[3] and cspVersion >= cspMinVersion then
  1182.     ui.registerOnlineExtra(ui.Icons.Settings, "Settings", nil, settingsWindow, nil, ui.OnlineExtraFlags.Tool, 'ui.WindowFlags.AlwaysAutoResize')
  1183. end
Tags: dz
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement