Помощь LUA

Itachi Uchiha

Участник
Автор темы
124
21
Версия MoonLoader
.026-beta
Как сделать так, если я нажму клавишу "P", то всем ВОДИТЕЛЯМ всех машин в зоне стрима писалось /pm id Текст?
 
Решение
Lua:
local text = "тут твой текст"

function main()
    while not isSampAvailable() do wait(0) end
    while true do wait(0)
        if wasKeyPressed(80) and not sampIsDialogActive() and not sampIsChatInputActive() and not isSampfuncsConsoleActive() then -- бука - "P"
            for k, v in ipairs(getAllChars()) do
                local res, id = sampGetPlayerIdByCharHandle(v)
                if res and isCharInAnyCar(v) then
                    sampSendChat("/pm "..id.." "..text)
                    wait(700)
                end
            end
        end
    end
    wait(-1)
end
1602850950689.png
и зач wait(-1), если ты уже используешь беск. цикл в мейне

damag

Женюсь на официантке в моем любимом баре
Проверенный
1,152
1,192
Lua:
local text = "тут твой текст"

function main()
    while not isSampAvailable() do wait(0) end
    while true do wait(0)
        if wasKeyPressed(80) and not sampIsDialogActive() and not sampIsChatInputActive() and not isSampfuncsConsoleActive() then -- бука - "P"
            for k, v in ipairs(getAllChars()) do
                local res, id = sampGetPlayerIdByCharHandle(v)
                if res and isCharInAnyCar(v) then
                    sampSendChat("/pm "..id.." "..text)
                    wait(700)
                end
            end
        end
    end
    wait(-1)
end
 

Izvinisb

Известный
Проверенный
964
597
Lua:
local text = "тут твой текст"

function main()
    while not isSampAvailable() do wait(0) end
    while true do wait(0)
        if wasKeyPressed(80) and not sampIsDialogActive() and not sampIsChatInputActive() and not isSampfuncsConsoleActive() then -- бука - "P"
            for k, v in ipairs(getAllChars()) do
                local res, id = sampGetPlayerIdByCharHandle(v)
                if res and isCharInAnyCar(v) then
                    sampSendChat("/pm "..id.." "..text)
                    wait(700)
                end
            end
        end
    end
    wait(-1)
end
1602850950689.png
и зач wait(-1), если ты уже используешь беск. цикл в мейне