From 02baea75f9cdc2cb838328e576d1145786faf8b8 Mon Sep 17 00:00:00 2001 From: Miho931 <98314142+Miho931@users.noreply.github.com> Date: Sun, 8 Jun 2025 18:23:47 +0200 Subject: [PATCH] Update stored.lua --- resources/[carscripts]/mh_garage/client/stored.lua | 5 ----- 1 file changed, 5 deletions(-) diff --git a/resources/[carscripts]/mh_garage/client/stored.lua b/resources/[carscripts]/mh_garage/client/stored.lua index ff670d57f..42025423f 100644 --- a/resources/[carscripts]/mh_garage/client/stored.lua +++ b/resources/[carscripts]/mh_garage/client/stored.lua @@ -7,14 +7,11 @@ AddEventHandler('mh_garage:storeVehicle', function(zone) local random = SelectName() local opt = {} -print(json.encode(random)) for i = 1, #vehicles, 1 do local veh_coords = GetEntityCoords(vehicles[i]) local distance = #(veh_coords - coords) -print(distance) if distance < 40.0 then local mods = QBCore.Functions.GetVehicleProperties(vehicles[i]) -print("3") table.insert(opt, { title = "Kennzeichen: "..mods.plate, description = "Soll dieses Fahrzeug eingeparkt werden?", @@ -35,14 +32,12 @@ print("3") end end }) -print("4") lib.registerContext({ id = "StoredVehicles", title = random.name, description = random.description, options = opt }) -print("5") lib.showContext("StoredVehicles") end end