1
0
Fork 0
forked from Simnation/Main

Update stored.lua

This commit is contained in:
Miho931 2025-06-08 18:40:13 +02:00
parent 74349740b5
commit fc0a0d7f12

View file

@ -20,15 +20,12 @@ AddEventHandler('mh_garage:storeVehicle', function(zone)
if zone.price == nil then if zone.price == nil then
else else
local alert = lib.alertDialog({ lib.alertDialog({
header = "Parkplatz kosten", header = "Parkplatz kosten",
content = "Parkplatkosten pro Fahrzeug: "..zone.price.."\n\nWillst du das Parkplatz trotzdem Einparken?", content = "Parkplatkosten pro Fahrzeug: "..zone.price.."\n\nWillst du das Parkplatz trotzdem Einparken?",
centered = true, centered = true,
cancel = true cancel = true
}) })
print(alert)
print(json.encode(alert))
end end
end end
}) })