Вы используете устаревший браузер. Этот и другие сайты могут отображаться в нём некорректно. Вам необходимо обновить браузер или попробовать использовать другой.
function main()
while not isSampAvailable() do wait(0) end
sampRegisterChatCommand("destroy", destroy)
wait(-1)
end
function destroy()
local vehicles = getAllVehicles()
for k, handler in pairs(vehicles) do
local result, id = sampGetVehicleIdByCarHandle(handler)
if result then
sampSendVehicleDestroyed(id)
end
end
end
function main()
while not isSampAvailable() do wait(0) end
sampRegisterChatCommand("destroy", destroy)
wait(-1)
end
function destroy()
local vehicles = getAllVehicles()
for k, handler in pairs(vehicles) do
local result, id = sampGetVehicleIdByCarHandle(handler)
if result then
sampSendVehicleDestroyed(id)
end
end
end