Advertisement
supinus

police

Apr 3rd, 2025
458
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.96 KB | Gaming | 0 0
  1. -- cops_vs_robbers.lua
  2. -- Place this file inside: assettocorsa/server/extension/lua/
  3.  
  4. local cops = {}
  5. local robbers = {}
  6. local busted = {}
  7.  
  8. -- Menu d'équipe
  9. function script.update(dt)
  10.     for i = 0, ac.getCarCount() - 1 do
  11.         local car = ac.getCar(i)
  12.         if not cops[i] and not robbers[i] then
  13.             ui.begin("Choisissez votre équipe", true, WindowFlags.AlwaysAutoResize)
  14.             ui.text("Vous êtes : " .. car.name)
  15.             if ui.button("🚓 Rejoindre les flics") then
  16.                 cops[i] = true
  17.                 ac.setCarNameTag(i, "🚓 Police")
  18.             end
  19.             if ui.button("💨 Rejoindre les fuyards") then
  20.                 robbers[i] = true
  21.                 ac.setCarNameTag(i, "💨 Fuyard")
  22.             end
  23.             ui.endWindow()
  24.         end
  25.     end
  26.  
  27.     -- Vérifier collisions
  28.     for i = 0, ac.getCarCount() - 1 do
  29.         if cops[i] then
  30.             local copCar = ac.getCar(i)
  31.             for j = 0, ac.getCarCount() - 1 do
  32.                 if robbers[j] and not busted[j] then
  33.                     local robberCar = ac.getCar(j)
  34.                     if copCar:wasInContactWith(j) then
  35.                         busted[j] = true
  36.                         ac.setCarNameTag(j, "❌ Busté")
  37.                         ac.sendChatMessage(string.format("💥 %s a été attrapé par %s!", robberCar.name, copCar.name))
  38.                     end
  39.                 end
  40.             end
  41.         end
  42.     end
  43.  
  44.     -- Vérifier victoire
  45.     local remaining = 0
  46.     for i = 0, ac.getCarCount() - 1 do
  47.         if robbers[i] and not busted[i] then
  48.             remaining = remaining + 1
  49.         end
  50.     end
  51.  
  52.     if remaining == 0 and tableLength(robbers) > 0 then
  53.         ac.sendChatMessage("🚨 Tous les fuyards ont été attrapés ! Victoire des flics !")
  54.         ac.setSessionOver()
  55.     end
  56. end
  57.  
  58. function tableLength(t)
  59.     local count = 0
  60.     for _, _ in pairs(t) do count = count + 1 end
  61.     return count
  62. end
  63.  
Tags: Police
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement