скрипт которий дает ходьбу во время открития менюшек

тудудудудуу

Активный
Автор темы
365
31
кароче раньше когда лаунчер еще не давал такие запрети с игри со сборок бил скрипт которий как на лаунчере дает возможность бегать например с откритим инвентарем или с откритим телефоном и т.д т.п, дайте пж
 
Решение

chromiusj

R&B-baby-queen
Модератор
5,593
3,893
 

тудудудудуу

Активный
Автор темы
365
31
а можете дать пожалуйста еще бинд на /phone /style /lock ток с етими командами
 

NeverStu

Известный
442
144
а можете дать пожалуйста еще бинд на /phone /style /lock ток с етими командами
Lua:
script_author("NeverStu")
script_name("binder")

require "lib.moonloader"
local keys = require "vkeys"

local tag = "Binder Loaded"
local main_color = 0x0000FF

function main()
    if not isSampLoaded() or not isSampfuncsLoaded() then return end
      while not isSampAvailable() do wait(100) end
      sampAddChatMessage("" .. tag, main_color)
      while true do
      wait(0)

    if isKeyJustPressed(VK_L) and not sampIsChatInputActive() and not sampIsDialogActive() and not isPauseMenuActive() and not isSampfuncsConsoleActive() then sampSendChat("/lock") end
   
      if isKeyJustPressed(VK_P) and not sampIsChatInputActive() and not sampIsDialogActive() and not isPauseMenuActive() and not isSampfuncsConsoleActive() then sampSendChat("/phone") end

        if isKeyJustPressed(VK_3) and not sampIsChatInputActive() and not sampIsDialogActive() and not isPauseMenuActive() and not isSampfuncsConsoleActive() then sampSendChat("/style") end
end
Пробуй
 
  • Bug
Реакции: minxty

Heav

Активный
185
70
Lua:
script_author("NeverStu")
script_name("binder")

require "lib.moonloader"
local keys = require "vkeys"

local tag = "Binder Loaded"
local main_color = 0x0000FF

function main()
    if not isSampLoaded() or not isSampfuncsLoaded() then return end
      while not isSampAvailable() do wait(100) end
      sampAddChatMessage("" .. tag, main_color)
      while true do
      wait(0)

    if isKeyJustPressed(VK_L) and not sampIsChatInputActive() and not sampIsDialogActive() and not isPauseMenuActive() and not isSampfuncsConsoleActive() then sampSendChat("/lock") end
  
      if isKeyJustPressed(VK_P) and not sampIsChatInputActive() and not sampIsDialogActive() and not isPauseMenuActive() and not isSampfuncsConsoleActive() then sampSendChat("/phone") end

        if isKeyJustPressed(VK_3) and not sampIsChatInputActive() and not sampIsDialogActive() and not isPauseMenuActive() and not isSampfuncsConsoleActive() then sampSendChat("/style") end
end
Пробуй
Lua:
require("moonloader")

local vkeys = require("vkeys")

local binds = {
    {VK_L, '/lock'},
    {VK_P, '/phone'},
    {VK_3, '/style'}
}

function main()
    if not isSampLoaded() or not isSampfuncsLoaded() then return end
    while not isSampAvailable() do wait(100) end
    sampAddChatMessage("Binder Loaded", 0x0000FF)

    while true do
        wait(0)
        for i = 1, #binds do
            if isKeyJustPressed(binds[i][1]) and not isPauseMenuActive() and not sampIsCursorActive() then
                sampSendChat(binds[i][2])
            end
        end
    end
end
 
  • Нравится
Реакции: NeverStu

тудудудудуу

Активный
Автор темы
365
31
Lua:
require("moonloader")

local vkeys = require("vkeys")

local binds = {
    {VK_L, '/lock'},
    {VK_P, '/phone'},
    {VK_3, '/style'}
}

function main()
    if not isSampLoaded() or not isSampfuncsLoaded() then return end
    while not isSampAvailable() do wait(100) end
    sampAddChatMessage("Binder Loaded", 0x0000FF)

    while true do
        wait(0)
        for i = 1, #binds do
            if isKeyJustPressed(binds[i][1]) and not isPauseMenuActive() and not sampIsCursorActive() then
                sampSendChat(binds[i][2])
            end
        end
    end
end
спасибо, вот ето уже работает