Скрипт на закрытие соединения

Borsuk

Новичок
Автор темы
12
0
Нужен скрипт по клавише/команде на закрытие соединения
 
Решение
Lua:
require "lib.moonloader"
function main()
    if not isSampfuncsLoaded() or not isSampLoaded() then return end
    while not isSampAvailable() do wait(100) end
    while true do
    wait(0)
        if not isPauseMenuActive() and not sampIsChatInputActive() then
            if isKeyJustPressed(VK_P) then
            sampSetGamestate(5)
            end
        end
    end
end

Rei

Известный
Друг
1,618
1,678
Lua:
require "lib.moonloader"
function main()
    if not isSampfuncsLoaded() or not isSampLoaded() then return end
    while not isSampAvailable() do wait(100) end
    while true do
    wait(0)
        if not isPauseMenuActive() and not sampIsChatInputActive() then
            if isKeyJustPressed(VK_P) then
            sampSetGamestate(5)
            end
        end
    end
end