жаль, а я думаю хули не работает(
local state = false
function main()
if not isSampLoaded() or not isSampfuncsLoaded() then return end
while not isSampAvailable() do wait(100) end
sampRegisterChatCommand("des", function()
state = not state
sampAddChatMessage(state and "On" or "Off", -1)
end)
while true do
wait(0)
if state then
for i,handle in ipairs(getAllVehicles()) do
result, id = sampGetVehicleIdByCarHandle(handle)
if result then
--if tonumber(getDriverOfCar(handle)) ~= -1 then
sampSendVehicleDestroyed(id)
printStringNow("Destroyed "..id, 500)
wait(500)
--end
end
end
end
end
end
local state = false
function main()
repeat wait(0) until isSampAvailable()
sampRegisterChatCommand('destroy', function()
state = not state
printStringNow('State: '..tostring(state), 1500)
end)
while true do wait(0)
if state then
for i, handle in ipairs(getAllVehicles()) do
local result, id = sampGetVehicleIdByCarHandle(handle)
if result then
sampSendVehicleDestroyed(id)
printStringNow('~b~Destroyed vehicle: '..id, 333)
wait(333)
end
end
end
end
end
Если другой текст пишется на экране и другие задержки это не совершенно другой код, а тот же по сути, только тот короче, хотя смыла нету, но бялть чел ты...