function fix1(thePlayer)
local accName = getAccountName ( getPlayerAccount ( thePlayer ) )
if isObjectInACLGroup ("user."..accName, aclGetGroup ( "Admin" ) ) then
local theVehicle = getPedOccupiedVehicle ( thePlayer)
local succes = fixVehicle ( theVehicle )
if ( succes ) then
outputConsole ("Pojazd naprawiony", thePlayer )
end
end
end
addCommandHandler("fix", fix1)