addEvent("chiptune", true)
addEventHandler("chiptune", root, function()
pojazd = getPedOccupiedVehicle(source)
if not pojazd then return end
if getElementData(veh, "chiptuning", true) then return end
takePlayerMoney(source, 1500)
outputChatBox("Pomy?lnie Zamontowano tuning.", source,true)
setElementData(veh,"chipek", true)
local set1 = getVehicleHandling(veh)["maxVelocity"]
local set2 = getVehicleHandling(veh)["engineAcceleration"]
local chipac = set2 + 1.5
local chipmax = set1 + 10
setVehicleHandling(veh, "maxVelocity", chipmax)
setVehicleHandling(veh, "engineAcceleration", chipac)
end
)