Не запускает скрипт при заходе

Matteo Mandarin

Новичок
Автор темы
23
0
Версия MoonLoader
Другое
Не запускает скрипт сразу при заходе в игру, только есть быть в игре и поменять ту же активацию то заработает, что делать? как пофиксить?

lua invis:
local hook = require 'lib.samp.events'
local state1 = false
script_author("vk.com/n.astafev15")

function main()
    if not isSampLoaded() or not isSampfuncsLoaded() then
        return
    end
    if isSampLoaded() then
        wait(1500)
        sampAddChatMessage("[Invis] Инвиз успешно загружен", -1)
        sampAddChatMessage("[Invis] Автор : FIX by Matteo!", -1)
    end
    while not isSampAvailable() do wait(1500) end
    sampRegisterChatCommand("inviss", invis)
    while true do
        wait(0)
        if state1 then
            if testCheat("X") then
                state1 = false
                wait(600)
                state1 = true
            end
        end
    end


end
 

ragadqa deathmons

Новичок
7
1
Lua:
local hook = require 'lib.samp.events'
local state1 = false
script_author("vk.com/n.astafev15")

function main()
    if not isSampfuncsLoaded() or not isSampLoaded() then return end
    while not isSampAvailable() do wait(100) end
    sampRegisterChatCommand("invis", invis)
    
        sampAddChatMessage("[Invis] Инвиз успешно загружен", -1)
        sampAddChatMessage("[Invis] Автор : FIX by Matteo!", -1)
        
    while true do
        wait(0)
        if state1 then
            if testCheat("X") then
                state1 = false
                wait(600)
                state1 = true
            end
        end
    end

end
 
  • Нравится
Реакции: Alkoigel

Matteo Mandarin

Новичок
Автор темы
23
0
Lua:
local hook = require 'lib.samp.events'
local state1 = false
script_author("vk.com/n.astafev15")

function main()
    if not isSampfuncsLoaded() or not isSampLoaded() then return end
    while not isSampAvailable() do wait(100) end
    sampRegisterChatCommand("invis", invis)
   
        sampAddChatMessage("[Invis] Инвиз успешно загружен", -1)
        sampAddChatMessage("[Invis] Автор : FIX by Matteo!", -1)
       
    while true do
        wait(0)
        if state1 then
            if testCheat("X") then
                state1 = false
                wait(600)
                state1 = true
            end
        end
    end

end
Уже пофиксил, но все равно спасибо